Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
OpenFOAM-plus
Commits
07cf12c3
Commit
07cf12c3
authored
Sep 26, 2017
by
Andrew Heather
Browse files
TUT: Tutorial updates - see
#600
parent
2266eedb
Changes
17
Hide whitespace changes
Inline
Side-by-side
tutorials/lagrangian/reactingParcelFoam/cylinder/constant/chemistryProperties
View file @
07cf12c3
...
...
@@ -18,7 +18,7 @@ FoamFile
chemistryType
{
chemistrySolver noChemistrySolver;
chemistryThermo
psi
;
chemistryThermo
rho
;
}
chemistry off;
...
...
tutorials/lagrangian/reactingParcelFoam/cylinder/constant/combustionProperties
View file @
07cf12c3
...
...
@@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
combustionModel PaSR<
psi
ChemistryCombustion>;
combustionModel PaSR<
rho
ChemistryCombustion>;
active false;
...
...
tutorials/lagrangian/reactingParcelFoam/cylinder/constant/thermophysicalProperties
View file @
07cf12c3
...
...
@@ -17,7 +17,7 @@ FoamFile
thermoType
{
type he
Psi
Thermo;
type he
Rho
Thermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
...
...
tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/chemistryProperties
View file @
07cf12c3
...
...
@@ -18,7 +18,7 @@ FoamFile
chemistryType
{
chemistrySolver noChemistrySolver;
chemistryThermo
psi
;
chemistryThermo
rho
;
}
chemistry off;
...
...
tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/combustionProperties
View file @
07cf12c3
...
...
@@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
combustionModel laminar<
psi
ChemistryCombustion>;
combustionModel laminar<
rho
ChemistryCombustion>;
active false;
...
...
tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/thermophysicalProperties
View file @
07cf12c3
...
...
@@ -17,7 +17,7 @@ FoamFile
thermoType
{
type he
Psi
Thermo;
type he
Rho
Thermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
...
...
tutorials/lagrangian/reactingParcelFoam/hotBoxes/si
deleted
100644 → 0
View file @
2266eedb
tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/chemistryProperties
View file @
07cf12c3
...
...
@@ -18,7 +18,7 @@ FoamFile
chemistryType
{
chemistrySolver noChemistrySolver;
chemistryThermo
psi
;
chemistryThermo
rho
;
}
chemistry off;
...
...
tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/combustionProperties
View file @
07cf12c3
...
...
@@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
combustionModel laminar<
psi
ChemistryCombustion>;
combustionModel laminar<
rho
ChemistryCombustion>;
active false;
...
...
tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/thermophysicalProperties
View file @
07cf12c3
...
...
@@ -17,7 +17,7 @@ FoamFile
thermoType
{
type he
Psi
Thermo;
type he
Rho
Thermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
...
...
tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/chemistryProperties
View file @
07cf12c3
...
...
@@ -18,7 +18,7 @@ FoamFile
chemistryType
{
chemistrySolver noChemistrySolver;
chemistryThermo
psi
;
chemistryThermo
rho
;
}
chemistry off;
...
...
tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/combustionProperties
View file @
07cf12c3
...
...
@@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
combustionModel laminar<
psi
ChemistryCombustion>;
combustionModel laminar<
rho
ChemistryCombustion>;
active false;
...
...
tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/thermophysicalProperties
View file @
07cf12c3
...
...
@@ -17,7 +17,7 @@ FoamFile
thermoType
{
type he
Psi
Thermo;
type he
Rho
Thermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
...
...
tutorials/mesh/parallel/filter/0.orig/p
View file @
07cf12c3
...
...
@@ -10,12 +10,11 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
location "1";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [
1 -1 -2 0 0 0 0
];
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 100000;
...
...
@@ -23,33 +22,42 @@ boundaryField
{
walls
{
type zeroGradient;
type calculated;
value $internalField;
}
inlet
{
type zeroGradient;
type calculated;
value $internalField;
}
outlet
{
type
fixedValue
;
value
uniform 100000
;
type
calculated
;
value
$internalField
;
}
cycLeft_half0
{
type cyclic;
}
cycRight_half0
{
type cyclic;
}
frontAndBack
{
type empty;
}
cycLeft_half1
{
type cyclic;
}
cycRight_half1
{
type cyclic;
...
...
tutorials/mesh/parallel/filter/constant/combustionProperties
View file @
07cf12c3
...
...
@@ -15,15 +15,12 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
combustionModel
PaSR
<rhoChemistryCombustion>;
combustionModel
laminar
<rhoChemistryCombustion>;
active false;
PaSRCoeffs
{
Cmix 1.0;
turbulentReaction off;
}
laminarCoeffs
{}
// ************************************************************************* //
tutorials/mesh/parallel/filter/constant/thermophysicalProperties
View file @
07cf12c3
...
...
@@ -36,16 +36,11 @@ foamChemistryThermoFile "$FOAM_CASE/constant/thermo.incompressiblePoly";
liquids
{
H2O
{
defaultCoeffs yes;
}
H2O;
}
solids
{
// none
}
{}
inertSpecie N2;
...
...
tutorials/mesh/parallel/filter/system/fvSolution
View file @
07cf12c3
...
...
@@ -47,23 +47,17 @@ solvers
relTol 0;
}
p
p
_rgh
{
solver GAMG;
tolerance 0;
relTol 0.1;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
pFinal
p
_rgh
Final
{
$p;
$p
_rgh
;
tolerance 1e-06;
relTol 0;
}
...
...
@@ -99,9 +93,6 @@ PIMPLE
relaxationFactors
{
fields
{
}
equations
{
".*Final" 1;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment