coldEngineFoam.C
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 #include "fvCFD.H"
00034 #include "engineTime.H"
00035 #include "engineMesh.H"
00036 #include "basicPsiThermo.H"
00037 #include "turbulenceModel.H"
00038 #include "OFstream.H"
00039
00040
00041
00042 int main(int argc, char *argv[])
00043 {
00044 #include "setRootCase.H"
00045
00046 #include "createEngineTime.H"
00047 #include "createEngineMesh.H"
00048 #include "createFields.H"
00049 #include "initContinuityErrs.H"
00050 #include "readEngineTimeControls.H"
00051 #include "compressibleCourantNo.H"
00052 #include "setInitialDeltaT.H"
00053 #include "startSummary.H"
00054
00055
00056
00057 Info<< "\nStarting time loop\n" << endl;
00058
00059 while (runTime.run())
00060 {
00061 #include "readPISOControls.H"
00062 #include "readEngineTimeControls.H"
00063 #include "compressibleCourantNo.H"
00064 #include "setDeltaT.H"
00065
00066 runTime++;
00067
00068 Info<< "Crank angle = " << runTime.theta() << " CA-deg"
00069 << endl;
00070
00071 mesh.move();
00072
00073 #include "rhoEqn.H"
00074
00075 #include "UEqn.H"
00076
00077
00078 for (int corr=1; corr<=nCorr; corr++)
00079 {
00080 #include "hEqn.H"
00081 #include "pEqn.H"
00082 }
00083
00084 turbulence->correct();
00085
00086 runTime.write();
00087
00088 #include "logSummary.H"
00089
00090 Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
00091 << " ClockTime = " << runTime.elapsedClockTime() << " s"
00092 << nl << endl;
00093 }
00094
00095 Info<< "End\n" << endl;
00096
00097 return 0;
00098 }
00099
00100
00101
Copyright © 2000-2009 OpenCFD Ltd