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 #include <errorEstimation/errorEstimate.H>
00065 #include <errorEstimation/resError.H>
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 Info<< "\nEstimating error in the incompressible momentum equation\n"
00081 << "Reading transportProperties\n" << endl;
00082
00083 IOdictionary transportProperties
00084 (
00085 IOobject
00086 (
00087 "transportProperties",
00088 runTime.constant(),
00089 mesh,
00090 IOobject::MUST_READ,
00091 IOobject::NO_WRITE
00092 )
00093 );
00094
00095 dimensionedScalar nu
00096 (
00097 transportProperties.lookup("nu")
00098 );
00099
00100 forAll(timeDirs, timeI)
00101 {
00102 runTime.setTime(timeDirs[timeI], timeI);
00103
00104 Info<< "Time = " << runTime.timeName() << endl;
00105
00106 mesh.readUpdate();
00107
00108 IOobject pHeader
00109 (
00110 "p",
00111 runTime.timeName(),
00112 mesh,
00113 IOobject::MUST_READ
00114 );
00115
00116 IOobject Uheader
00117 (
00118 "U",
00119 runTime.timeName(),
00120 mesh,
00121 IOobject::MUST_READ
00122 );
00123
00124 if (pHeader.headerOk() && Uheader.headerOk())
00125 {
00126 Info << "Reading p" << endl;
00127 volScalarField p(pHeader, mesh);
00128
00129 Info << "Reading U" << endl;
00130 volVectorField U(Uheader, mesh);
00131
00132 # include <finiteVolume/createPhi.H>
00133
00134 errorEstimate<vector> ee
00135 (
00136 resError::div(phi, U)
00137 - resError::laplacian(nu, U)
00138 ==
00139 -fvc::grad(p)
00140 );
00141
00142 volVectorField e = ee.error();
00143 e.write();
00144 mag(e)().write();
00145 }
00146 else
00147 {
00148 Info<< " No p or U" << endl;
00149 }
00150
00151 Info<< endl;
00152 }
00153
00154 Info<< "End\n" << endl;
00155
00156 return 0;
00157 }
00158
00159
00160