Skip to content

Commit 333ede3

Browse files
authored
Merge pull request #398 from JX278/master
Add a 2D supercritical TGV case
2 parents 679697c + 612a338 commit 333ede3

23 files changed

Lines changed: 132234 additions & 0 deletions

examples/dfLowMachFoam/twoD_supercirticalTGV/0/CH4

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/CO

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/CO2

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/H2O

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/N2

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/O2

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.

examples/dfLowMachFoam/twoD_supercirticalTGV/0/T

Lines changed: 16437 additions & 0 deletions
Large diffs are not rendered by default.
57.7 KB
Binary file not shown.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*--------------------------------*- C++ -*----------------------------------*\
2+
========= |
3+
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4+
\\ / O peration | Website: https://openfoam.org
5+
\\ / A nd | Version: 7
6+
\\/ M anipulation |
7+
\*---------------------------------------------------------------------------*/
8+
FoamFile
9+
{
10+
version 2.0;
11+
format ascii;
12+
class volScalarField;
13+
location "0";
14+
object p;
15+
}
16+
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17+
18+
dimensions [1 -1 -2 0 0 0 0];
19+
20+
internalField uniform 1.01325e+07;
21+
22+
boundaryField
23+
{
24+
front
25+
{
26+
type cyclic;
27+
}
28+
back
29+
{
30+
type cyclic;
31+
}
32+
left
33+
{
34+
type cyclic;
35+
}
36+
right
37+
{
38+
type cyclic;
39+
}
40+
top
41+
{
42+
type cyclic;
43+
}
44+
down
45+
{
46+
type cyclic;
47+
}
48+
}
49+
50+
// ************************************************************************* //

0 commit comments

Comments
 (0)