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

Class yPlus

src/functionObjects/field/yPlus/yPlus.H:89–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87\*---------------------------------------------------------------------------*/
88
89class 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
114public:
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

Calls

no outgoing calls

Tested by

no test coverage detected