mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
OF4 -> OF5: functionObjects volRegion/surfaceRegion -> volFieldValue/surfaceFieldValue fvOptions limitTemperatureCoeffs: Tmin/Tmax -> min/max OF5 -> OF6: combustionProperties: noCombustion<> -> none (template parameters are no longer required)
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.3.0 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object combustionProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// OF5 -> OF6: noCombustion<> -> none (template parameters are no longer required)
|
|
//combustionModel noCombustion<rhoThermoCombustion>; //PaSR<rhoChemistryCombustion>; //PaSR<psiChemistryCombustion>;
|
|
combustionModel none; // OF6
|
|
|
|
active false; //true;
|
|
|
|
//noCombustionCoeffs
|
|
noneCoeffs
|
|
{
|
|
}
|
|
|
|
|
|
PaSRCoeffs
|
|
{
|
|
Cmix 1.0;
|
|
turbulentReaction off;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|