forked from deepflameCFD/deepflame-dev
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update install document: df-notorch python=3.8 * update flareFGM for 2-phase combustion & 6D table * SandiaD sample points * sandiaD test setup * shared memory space
- Loading branch information
1 parent
162ebc0
commit 4a1b9cd
Showing
117 changed files
with
2,674 additions
and
725 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
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
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
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
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
Binary file not shown.
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
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
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,70 @@ | ||
/*--------------------------------*- 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 volVectorField; | ||
location "0"; | ||
object U; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 1 -1 0 0 0 0]; | ||
|
||
internalField uniform (0 0 0.9); | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type noSlip; | ||
} | ||
|
||
outlet | ||
{ | ||
type pressureInletOutletVelocity; | ||
value $internalField; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform (0 0 11.4); | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform (0 0 0.9); | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform (0 0 49.6); | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
Binary file not shown.
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 Ydefault; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [0 0 0 0 0 0 0]; | ||
|
||
internalField uniform 0; | ||
|
||
boundaryField | ||
{ | ||
wallTube | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
outlet | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletPilot | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
inletAir | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
wallOutside | ||
{ | ||
type zeroGradient; | ||
} | ||
|
||
inletCH4 | ||
{ | ||
type fixedValue; | ||
value uniform 0; | ||
} | ||
|
||
frontAndBack_pos | ||
{ | ||
type wedge; | ||
} | ||
|
||
frontAndBack_neg | ||
{ | ||
type wedge; | ||
} | ||
} | ||
|
||
|
||
// ************************************************************************* // |
Binary file not shown.
Oops, something went wrong.