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 #include <finiteVolume/fvCFD.H>
00051 #include <molecule/md.H>
00052
00053 int main(int argc, char *argv[])
00054 {
00055
00056 # include <OpenFOAM/setRootCase.H>
00057 # include <OpenFOAM/createTime.H>
00058 # include <OpenFOAM/createMesh.H>
00059
00060 potential pot(mesh);
00061
00062 moleculeCloud molecules(mesh, pot);
00063
00064 # include <molecule/temperatureAndPressureVariables.H>
00065
00066 label nAveragingSteps = 0;
00067
00068 Info << "\nStarting time loop\n" << endl;
00069
00070 while (runTime.loop())
00071 {
00072
00073 nAveragingSteps++;
00074
00075 Info << "Time = " << runTime.timeName() << endl;
00076
00077 molecules.evolve();
00078
00079 # include <molecule/meanMomentumEnergyAndNMols.H>
00080
00081 # include <molecule/temperatureAndPressure.H>
00082
00083 runTime.write();
00084
00085 if (runTime.outputTime())
00086 {
00087 nAveragingSteps = 0;
00088 }
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