forked from deepflameCFD/deepflame-dev
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from hhflame/master
Add an example of using combustion model with dfLowMachFoam: twoD_San…
- Loading branch information
Showing
33 changed files
with
3,208 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object CH4; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0.1561; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object CO; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 4.07e-3; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object CO2; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 0.1098; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
object G; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [1 0 -3 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
".*" | ||
{ | ||
type MarshakRadiation; | ||
T T; | ||
emissivityMode lookup; | ||
emissivity uniform 1.0; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object H; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 2.48e-5; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | Website: https://openfoam.org | ||
\\ / A nd | Version: 7 | ||
\\/ M anipulation | | ||
\*---------------------------------------------------------------------------*/ | ||
FoamFile | ||
{ | ||
version 2.0; | ||
format ascii; | ||
class volScalarField; | ||
location "0"; | ||
object H2; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 1.29e-4; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
Oops, something went wrong.