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 <OpenFOAM/argList.H>
00065 #include <OpenFOAM/timeSelector.H>
00066 #include <OpenFOAM/Time.H>
00067 #include <finiteVolume/fvMesh.H>
00068 #include <OpenFOAM/vectorIOField.H>
00069 #include <finiteVolume/volFields.H>
00070
00071 using namespace Foam;
00072
00073
00074
00075
00076
00077 int main(int argc, char *argv[])
00078 {
00079 timeSelector::addOptions();
00080
00081 # include <OpenFOAM/setRootCase.H>
00082 # include <OpenFOAM/createTime.H>
00083
00084 instantList timeDirs = timeSelector::select0(runTime, args);
00085
00086 # include <OpenFOAM/createMesh.H>
00087
00088 forAll(timeDirs, timeI)
00089 {
00090 runTime.setTime(timeDirs[timeI], timeI);
00091
00092 Info<< "Time = " << runTime.timeName() << endl;
00093
00094
00095 mesh.readUpdate();
00096
00097 volVectorField cc
00098 (
00099 IOobject
00100 (
00101 "cellCentres",
00102 runTime.timeName(),
00103 mesh,
00104 IOobject::NO_READ,
00105 IOobject::AUTO_WRITE
00106 ),
00107 mesh.C()
00108 );
00109
00110
00111
00112
00113
00114
00115 Info<< "Writing components of cellCentre positions to volScalarFields"
00116 << " ccx, ccy, ccz in " << runTime.timeName() << endl;
00117
00118 for (direction i=0; i<vector::nComponents; i++)
00119 {
00120 volScalarField cci
00121 (
00122 IOobject
00123 (
00124 "cc" + word(vector::componentNames[i]),
00125 runTime.timeName(),
00126 mesh,
00127 IOobject::NO_READ,
00128 IOobject::AUTO_WRITE
00129 ),
00130 mesh.C().component(i)
00131 );
00132
00133 cci.write();
00134 }
00135 }
00136
00137 Info<< "\nEnd" << endl;
00138
00139 return 0;
00140 }
00141
00142
00143