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.
Merge pull request #398 from JX278/master
Add a 2D supercritical TGV case
- Loading branch information
Showing
23 changed files
with
132,234 additions
and
0 deletions.
There are no files selected for viewing
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/CH4
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/CO
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/CO2
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/H2O
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/N2
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/O2
Large diffs are not rendered by default.
Oops, something went wrong.
16,437 changes: 16,437 additions & 0 deletions
16,437
examples/dfLowMachFoam/twoD_supercirticalTGV/0/T
Large diffs are not rendered by default.
Oops, something went wrong.
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,50 @@ | ||
/*--------------------------------*- 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 p; | ||
} | ||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | ||
|
||
dimensions [1 -1 -2 0 0 0 0]; | ||
|
||
internalField uniform 1.01325e+07; | ||
|
||
boundaryField | ||
{ | ||
front | ||
{ | ||
type cyclic; | ||
} | ||
back | ||
{ | ||
type cyclic; | ||
} | ||
left | ||
{ | ||
type cyclic; | ||
} | ||
right | ||
{ | ||
type cyclic; | ||
} | ||
top | ||
{ | ||
type cyclic; | ||
} | ||
down | ||
{ | ||
type cyclic; | ||
} | ||
} | ||
|
||
// ************************************************************************* // |
Oops, something went wrong.