Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 #include <finiteVolume/fvCFD.H>
00065
00066
00067
00068
00069 int main(int argc, char *argv[])
00070 {
00071 timeSelector::addOptions();
00072
00073 # include <OpenFOAM/setRootCase.H>
00074 # include <OpenFOAM/createTime.H>
00075
00076 instantList timeDirs = timeSelector::select0(runTime, args);
00077
00078 # include <OpenFOAM/createMesh.H>
00079
00080 runTime.setTime(timeDirs[timeDirs.size()-1], timeDirs.size()-1);
00081
00082 volScalarField pMean
00083 (
00084 IOobject
00085 (
00086 "pMean",
00087 runTime.timeName(),
00088 mesh,
00089 IOobject::MUST_READ
00090 ),
00091 mesh
00092 );
00093
00094 forAll(timeDirs, timeI)
00095 {
00096 runTime.setTime(timeDirs[timeI], timeI);
00097
00098 Info<< "Time = " << runTime.timeName() << endl;
00099
00100 IOobject pheader
00101 (
00102 "p",
00103 runTime.timeName(),
00104 mesh,
00105 IOobject::MUST_READ
00106 );
00107
00108
00109 if (pheader.headerOk())
00110 {
00111 mesh.readUpdate();
00112
00113 Info<< " Reading p" << endl;
00114 volScalarField p(pheader, mesh);
00115
00116 Info<< " Calculating pPrime2" << endl;
00117 volScalarField pPrime2
00118 (
00119 IOobject
00120 (
00121 "pPrime2",
00122 runTime.timeName(),
00123 mesh,
00124 IOobject::NO_READ
00125 ),
00126 sqr(p - pMean)
00127 );
00128 pPrime2.write();
00129 }
00130 else
00131 {
00132 Info<< " No p" << endl;
00133 }
00134
00135 Info<< endl;
00136 }
00137
00138 return 0;
00139 }
00140
00141
00142