| 87 | \*---------------------------------------------------------------------------*/ |
| 88 | |
| 89 | class yPlus |
| 90 | : |
| 91 | public fvMeshFunctionObject, |
| 92 | public logFiles, |
| 93 | public writeLocalObjects |
| 94 | { |
| 95 | // Private Member Functions |
| 96 | |
| 97 | //- File header information |
| 98 | virtual void writeFileHeader(const label i); |
| 99 | |
| 100 | //- Calculate y+ |
| 101 | void calcYPlus |
| 102 | ( |
| 103 | const turbulenceModel& turbModel, |
| 104 | volScalarField& yPlus |
| 105 | ); |
| 106 | |
| 107 | //- Disallow default bitwise copy construct |
| 108 | yPlus(const yPlus&); |
| 109 | |
| 110 | //- Disallow default bitwise assignment |
| 111 | void operator=(const yPlus&); |
| 112 | |
| 113 | |
| 114 | public: |
| 115 | |
| 116 | //- Runtime type information |
| 117 | TypeName("yPlus"); |
| 118 | |
| 119 | |
| 120 | // Constructors |
| 121 | |
| 122 | //- Construct from Time and dictionary |
| 123 | yPlus |
| 124 | ( |
| 125 | const word& name, |
| 126 | const Time& runTime, |
| 127 | const dictionary& dict |
| 128 | ); |
| 129 | |
| 130 | |
| 131 | //- Destructor |
| 132 | virtual ~yPlus(); |
| 133 | |
| 134 | |
| 135 | // Member Functions |
| 136 | |
| 137 | //- Read the yPlus data |
| 138 | virtual bool read(const dictionary&); |
| 139 | |
| 140 | //- Calculate the yPlus field |
| 141 | virtual bool execute(); |
| 142 | |
| 143 | //- Write the yPlus field |
| 144 | virtual bool write(); |
| 145 | }; |
| 146 |
no outgoing calls
no test coverage detected