dsmcFoam.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2016 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Application
27  dsmcFoam
28 
29 Group
30  grpDiscreteMethodsSolvers
31 
32 Description
33  Direct simulation Monte Carlo (DSMC) solver
34  for transient, multi-species flows.
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #include "fvCFD.H"
39 #include "dsmcCloud.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 int main(int argc, char *argv[])
44 {
45  argList::addNote
46  (
47  "Direct simulation Monte Carlo (DSMC) solver"
48  " for transient, multi-species flows."
49  );
50 
51  #define NO_CONTROL
52  #include "postProcess.H"
53 
54  #include "addCheckCaseOptions.H"
55  #include "setRootCaseLists.H"
56  #include "createTime.H"
57  #include "createMesh.H"
58  #include "createFields.H"
59 
60  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62  Info<< "\nStarting time loop\n" << endl;
63 
64  while (runTime.loop())
65  {
66  Info<< "Time = " << runTime.timeName() << nl << endl;
67 
68  dsmc.evolve();
69 
70  dsmc.info();
71 
72  runTime.write();
73 
74  Info<< nl;
75  runTime.printExecutionTime(Info);
76  }
77 
78  Info<< "End\n" << endl;
79 
80  return 0;
81 }
82 
83 
84 // ************************************************************************* //
constexpr char nl
The newline &#39;\n&#39; character (0x0a)
Definition: Ostream.H:50
engineTime & runTime
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:531
InfoProxy< IOstream > info() const noexcept
Return info proxy, used to print IOstream information to a stream.
Definition: IOstream.H:532
Required Classes.
messageStream Info
Information stream (stdout output on master, null elsewhere)
Execute application functionObjects to post-process existing results.
Required Classes.