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
00065 #include <finiteVolume/fvCFD.H>
00066 #include <reactionThermophysicalModels/hCombustionThermo.H>
00067 #include <compressibleRASModels/RASModel.H>
00068 #include <finiteVolume/wallFvPatch.H>
00069
00070
00071
00072 int main(int argc, char *argv[])
00073 {
00074 timeSelector::addOptions();
00075 #include <OpenFOAM/setRootCase.H>
00076 #include <OpenFOAM/createTime.H>
00077 instantList timeDirs = timeSelector::select0(runTime, args);
00078 #include <OpenFOAM/createMesh.H>
00079
00080 forAll(timeDirs, timeI)
00081 {
00082 runTime.setTime(timeDirs[timeI], timeI);
00083 Info<< "Time = " << runTime.timeName() << endl;
00084 mesh.readUpdate();
00085
00086 #include "createFields.H"
00087
00088 surfaceScalarField heatFlux =
00089 fvc::interpolate(RASModel->alphaEff())*fvc::snGrad(h);
00090
00091 const surfaceScalarField::GeometricBoundaryField& patchHeatFlux =
00092 heatFlux.boundaryField();
00093
00094 Info<< "\nWall heat fluxes [W]" << endl;
00095 forAll(patchHeatFlux, patchi)
00096 {
00097 if (isA<wallFvPatch>(mesh.boundary()[patchi]))
00098 {
00099 Info<< mesh.boundary()[patchi].name()
00100 << " "
00101 << sum
00102 (
00103 mesh.magSf().boundaryField()[patchi]
00104 *patchHeatFlux[patchi]
00105 )
00106 << endl;
00107 }
00108 }
00109 Info<< endl;
00110
00111 volScalarField wallHeatFlux
00112 (
00113 IOobject
00114 (
00115 "wallHeatFlux",
00116 runTime.timeName(),
00117 mesh
00118 ),
00119 mesh,
00120 dimensionedScalar("wallHeatFlux", heatFlux.dimensions(), 0.0)
00121 );
00122
00123 forAll(wallHeatFlux.boundaryField(), patchi)
00124 {
00125 wallHeatFlux.boundaryField()[patchi] = patchHeatFlux[patchi];
00126 }
00127
00128 wallHeatFlux.write();
00129 }
00130
00131 Info<< "End" << endl;
00132
00133 return 0;
00134 }
00135
00136