FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

chtMultiRegionSimpleFoam.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Application
00025     chtMultiRegionSimpleFoam
00026 
00027 Description
00028     Steady-state version of chtMultiRegionFoam
00029 
00030 Usage
00031     - rhoCentralFoam [OPTION]
00032 
00033     @param -case <dir> \n
00034     Specify the case directory
00035 
00036     @param -parallel \n
00037     Run the case in parallel
00038 
00039     @param -help \n
00040     Display short usage message
00041 
00042     @param -doc \n
00043     Display Doxygen documentation page
00044 
00045     @param -srcDoc \n
00046     Display source code
00047 
00048 \*---------------------------------------------------------------------------*/
00049 
00050 #include <finiteVolume/fvCFD.H>
00051 #include <basicThermophysicalModels/basicRhoThermo.H>
00052 #include <compressibleTurbulenceModel/turbulenceModel.H>
00053 #include <finiteVolume/fixedGradientFvPatchFields.H>
00054 #include <compressibleRASModels/regionProperties.H>
00055 #include "fluid/compressibleCourantNo.H"
00056 
00057 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00058 
00059 int main(int argc, char *argv[])
00060 {
00061     #include <OpenFOAM/setRootCase.H>
00062     #include <OpenFOAM/createTime.H>
00063 
00064     regionProperties rp(runTime);
00065 
00066     #include "fluid/createFluidMeshes.H"
00067     #include "solid/createSolidMeshes.H"
00068 
00069     #include "fluid/createFluidFields.H"
00070     #include "solid/createSolidFields.H"
00071 
00072     #include <finiteVolume/initContinuityErrs.H>
00073 
00074 
00075     while (runTime.loop())
00076     {
00077         Info<< "Time = " << runTime.timeName() << nl << endl;
00078 
00079         forAll(fluidRegions, i)
00080         {
00081             Info<< "\nSolving for fluid region "
00082                 << fluidRegions[i].name() << endl;
00083             #include "fluid/setRegionFluidFields.H"
00084             #include "fluid/readFluidMultiRegionSIMPLEControls.H"
00085             #include "fluid/initConvergenceCheck.H"
00086             #include "fluid/solveFluid.H"
00087             #include "fluid/convergenceCheck.H"
00088         }
00089 
00090         forAll(solidRegions, i)
00091         {
00092             Info<< "\nSolving for solid region "
00093                 << solidRegions[i].name() << endl;
00094             #include "solid/setRegionSolidFields.H"
00095             #include "solid/readSolidMultiRegionSIMPLEControls.H"
00096             #include "fluid/initConvergenceCheck.H"
00097             #include "solid/solveSolid.H"
00098             #include "fluid/convergenceCheck.H"
00099         }
00100 
00101         runTime.write();
00102 
00103         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
00104             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
00105             << nl << endl;
00106     }
00107 
00108     Info<< "End\n" << endl;
00109 
00110     return 0;
00111 }
00112 
00113 
00114 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines