MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / data

Class data

src/OpenFOAM/meshes/data/data.H:53–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51\*---------------------------------------------------------------------------*/
52
53class data
54:
55 public IOdictionary
56{
57 // Private data
58
59 //- Previously used time-index, used for reset between iterations
60 mutable label prevTimeIndex_;
61
62
63 // Private Member Functions
64
65 //- Disallow default bitwise copy construct
66 data(const data&);
67
68 //- Disallow default bitwise assignment
69 void operator=(const data&);
70
71
72public:
73
74 //- Debug switch
75 static int debug;
76
77
78 // Constructors
79
80 //- Construct for objectRegistry
81 data(const objectRegistry& obr);
82
83
84 // Member Functions
85
86 // Access
87
88 //- Return the dictionary of solver performance data
89 // which includes initial and final residuals for convergence
90 // checking
91 const dictionary& solverPerformanceDict() const;
92
93 //- Add/set the solverPerformance entry for the named field
94 template<class Type>
95 void setSolverPerformance
96 (
97 const word& name,
98 const SolverPerformance<Type>&
99 ) const;
100
101 //- Add/set the solverPerformance entry, using its fieldName
102 template<class Type>
103 void setSolverPerformance
104 (
105 const SolverPerformance<Type>&
106 ) const;
107};
108
109
110// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

Callers 10

fvMesh.CFile · 0.85
updateMethod · 0.85
wallPointYPlusMethod · 0.85
readFunction · 0.85
moveFunction · 0.85
readMasterHeaderFunction · 0.85
operator==Method · 0.85
operator==Method · 0.85
operator==Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected