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 #include <finiteVolume/fvCFD.H>
00064
00065
00066
00067 int main(int argc, char *argv[])
00068 {
00069 timeSelector::addOptions();
00070 #include <OpenFOAM/setRootCase.H>
00071 # include <OpenFOAM/createTime.H>
00072 instantList timeDirs = timeSelector::select0(runTime, args);
00073 # include <OpenFOAM/createMesh.H>
00074
00075 forAll(timeDirs, timeI)
00076 {
00077 runTime.setTime(timeDirs[timeI], timeI);
00078 Info<< "Time = " << runTime.timeName() << endl;
00079
00080 IOobject Uheader
00081 (
00082 "U",
00083 runTime.timeName(),
00084 mesh,
00085 IOobject::MUST_READ
00086 );
00087
00088
00089 if (Uheader.headerOk())
00090 {
00091 mesh.readUpdate();
00092
00093 Info<< " Reading U" << endl;
00094 volVectorField U(Uheader, mesh);
00095
00096 Info<< " Calculating wallGradU" << endl;
00097
00098 volVectorField wallGradU
00099 (
00100 IOobject
00101 (
00102 "wallGradU",
00103 runTime.timeName(),
00104 mesh,
00105 IOobject::NO_READ,
00106 IOobject::AUTO_WRITE
00107 ),
00108 mesh,
00109 dimensionedVector
00110 (
00111 "wallGradU",
00112 U.dimensions()/dimLength,
00113 vector::zero
00114 )
00115 );
00116
00117 forAll(wallGradU.boundaryField(), patchi)
00118 {
00119 wallGradU.boundaryField()[patchi] =
00120 -U.boundaryField()[patchi].snGrad();
00121 }
00122
00123 wallGradU.write();
00124 }
00125 else
00126 {
00127 Info<< " No U" << endl;
00128 }
00129 }
00130
00131 Info<< "End" << endl;
00132
00133 return 0;
00134 }
00135
00136
00137