makeGraphs.H
Go to the documentation of this file.
1volSymmTensorField R
2(
3 IOobject
4 (
5 "R",
6 runTime.timeName(),
7 mesh,
8 IOobject::NO_READ,
9 IOobject::AUTO_WRITE
10 ),
11 turbulence->R()
12);
13
14runTime.write();
15
16const word& gFormat = runTime.graphFormat();
17
19
22makeGraph(y, turbulence->epsilon(), gFormat);
23
27
28makeGraph(y, sqrt(mag(R.component(symmTensor::XX))), "u", gFormat);
29makeGraph(y, sqrt(mag(R.component(symmTensor::YY))), "v", gFormat);
30makeGraph(y, sqrt(mag(R.component(symmTensor::ZZ))), "w", gFormat);
31makeGraph(y, R.component(symmTensor::XY), "uv", gFormat);
32
33makeGraph(y, mag(fvc::grad(U)), "gammaDot", gFormat);
scalar y
#define R(A, B, C, D, E, F, K, M)
U
Definition: pEqn.H:72
dynamicFvMesh & mesh
engineTime & runTime
compressible::turbulenceModel & turbulence
vector wallNormal(Zero)
makeGraph(y, flowDirection &U, "Uf", gFormat)
const word & gFormat
Definition: makeGraphs.H:16
vector flowDirection
Definition: createFields.H:41