| 51 | \*---------------------------------------------------------------------------*/ |
| 52 | |
| 53 | class 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 | |
| 72 | public: |
| 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 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
no outgoing calls
no test coverage detected