1 fileName path(UMean.rootPath()/UMean.caseName()/"graphs"/UMean.instance());
4 scalarField UMeanXvalues
6 channelIndexing.collapse(UMean.component(vector::X)())
9 scalarField UMeanYvalues
11 channelIndexing.collapse(UMean.component(vector::Y)())
14 scalarField UMeanZvalues
16 channelIndexing.collapse(UMean.component(vector::Z)())
19 scalarField RxxValues(channelIndexing.collapse(Rxx));
20 scalarField RyyValues(channelIndexing.collapse(Ryy));
21 scalarField RzzValues(channelIndexing.collapse(Rzz));
22 scalarField RxyValues(channelIndexing.collapse(Rxy, true));
24 scalarField pPrime2MeanValues(channelIndexing.collapse(pPrime2Mean));
27 scalarField epsilonValues(channelIndexing.collapse(epsilonMean));
29 scalarField nuMeanValues(channelIndexing.collapse(nuMean));
30 scalarField nuPrimeValues(channelIndexing.collapse(nuPrime));
32 scalarField gammaDotMeanValues(channelIndexing.collapse(gammaDotMean));
33 scalarField gammaDotPrimeValues(channelIndexing.collapse(gammaDotPrime));
36 scalarField urmsValues(sqrt(mag(RxxValues)));
37 scalarField vrmsValues(sqrt(mag(RyyValues)));
38 scalarField wrmsValues(sqrt(mag(RzzValues)));
42 0.5*(sqr(urmsValues) + sqr(vrmsValues) + sqr(wrmsValues))
46 const scalarField& y = channelIndexing.y();
48 makeGraph(y, UMeanXvalues, "Uf", path, gFormat);
49 makeGraph(y, urmsValues, "u", path, gFormat);
50 makeGraph(y, vrmsValues, "v", path, gFormat);
51 makeGraph(y, wrmsValues, "w", path, gFormat);
52 makeGraph(y, RxyValues, "uv", path, gFormat);
53 makeGraph(y, kValues, "k", path, gFormat);
55 makeGraph(y, pPrime2MeanValues, "pPrime2Mean", path, gFormat);
58 makeGraph(y, epsilonValues, "epsilon", path, gFormat);
59 makeGraph(y, nuMeanValues, "nu", path, gFormat);
60 makeGraph(y, nuPrimeValues, "nuPrime", path, gFormat);
61 makeGraph(y, gammaDotMeanValues, "gammaDot", path, gFormat);
62 makeGraph(y, gammaDotPrimeValues, "gammaDotPrime", path, gFormat);