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 #include <errorEstimation/errorEstimate.H>
00066 #include <errorEstimation/resError.H>
00067
00068
00069
00070 int main(int argc, char *argv[])
00071 {
00072 timeSelector::addOptions();
00073
00074 # include <OpenFOAM/setRootCase.H>
00075 # include <OpenFOAM/createTime.H>
00076
00077 instantList timeDirs = timeSelector::select0(runTime, args);
00078
00079 # include <OpenFOAM/createMesh.H>
00080
00081 Info<< "\nEstimating error in scalar transport equation\n"
00082 << "Reading transportProperties\n" << endl;
00083
00084 IOdictionary transportProperties
00085 (
00086 IOobject
00087 (
00088 "transportProperties",
00089 runTime.constant(),
00090 mesh,
00091 IOobject::MUST_READ,
00092 IOobject::NO_WRITE
00093 )
00094 );
00095
00096
00097 Info<< "Reading diffusivity DT\n" << endl;
00098
00099 dimensionedScalar DT
00100 (
00101 transportProperties.lookup("DT")
00102 );
00103
00104
00105 forAll(timeDirs, timeI)
00106 {
00107 runTime.setTime(timeDirs[timeI], timeI);
00108
00109 Info<< "Time = " << runTime.timeName() << endl;
00110
00111 mesh.readUpdate();
00112
00113 IOobject THeader
00114 (
00115 "T",
00116 runTime.timeName(),
00117 mesh,
00118 IOobject::MUST_READ
00119 );
00120
00121 IOobject Uheader
00122 (
00123 "U",
00124 runTime.timeName(),
00125 mesh,
00126 IOobject::MUST_READ
00127 );
00128
00129 if (THeader.headerOk() && Uheader.headerOk())
00130 {
00131 Info << "Reading T" << endl;
00132 volScalarField T(THeader, mesh);
00133
00134 Info << "Reading U" << endl;
00135 volVectorField U(Uheader, mesh);
00136
00137 # include <finiteVolume/createPhi.H>
00138
00139 errorEstimate<scalar> ee
00140 (
00141 resError::div(phi, T)
00142 - resError::laplacian(DT, T)
00143 );
00144
00145 ee.residual()().write();
00146 volScalarField e = ee.error();
00147 e.write();
00148 mag(e)().write();
00149 }
00150 else
00151 {
00152 Info<< " No T or U" << endl;
00153 }
00154
00155 Info<< endl;
00156 }
00157
00158 Info<< "End\n" << endl;
00159
00160 return 0;
00161 }
00162
00163
00164