Compare commits
6 commits
master
...
kaust-ch4-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5fbb0e3648 | ||
|
|
91b8f9e7f7 | ||
|
|
80e57f1757 | ||
|
|
989de85bb9 | ||
|
|
2ec6037736 | ||
|
|
981eaf2dfd |
174 changed files with 6681077 additions and 167 deletions
|
|
@ -11,7 +11,7 @@ FoamFile
|
||||||
format ascii;
|
format ascii;
|
||||||
class volScalarField;
|
class volScalarField;
|
||||||
location "0";
|
location "0";
|
||||||
object C3H8;
|
object CH4;
|
||||||
}
|
}
|
||||||
|
|
||||||
dimensions [ 0 0 0 0 0 0 0 ];
|
dimensions [ 0 0 0 0 0 0 0 ];
|
||||||
|
|
@ -23,7 +23,7 @@ boundaryField
|
||||||
nzLow
|
nzLow
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 0.5;
|
value uniform 0.14046;
|
||||||
}
|
}
|
||||||
nzUpp
|
nzUpp
|
||||||
{
|
{
|
||||||
4
0.org/N2
4
0.org/N2
|
|
@ -23,12 +23,12 @@ boundaryField
|
||||||
nzLow
|
nzLow
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 0.5;
|
value uniform 0.85954;
|
||||||
}
|
}
|
||||||
nzUpp
|
nzUpp
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 0.77;
|
value uniform 0.440011;
|
||||||
}
|
}
|
||||||
outlet
|
outlet
|
||||||
{
|
{
|
||||||
|
|
|
||||||
2
0.org/O2
2
0.org/O2
|
|
@ -28,7 +28,7 @@ boundaryField
|
||||||
nzUpp
|
nzUpp
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 0.23;
|
value uniform 0.559989;
|
||||||
}
|
}
|
||||||
outlet
|
outlet
|
||||||
{
|
{
|
||||||
|
|
|
||||||
4
0.org/U
4
0.org/U
|
|
@ -23,12 +23,12 @@ boundaryField
|
||||||
nzLow
|
nzLow
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform ( 0.0 0.5 0 );
|
value uniform ( 0.0 0.2 0 );
|
||||||
}
|
}
|
||||||
nzUpp
|
nzUpp
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform ( 0 -0.5 0 );
|
value uniform ( 0 -0.2 0 );
|
||||||
}
|
}
|
||||||
outlet
|
outlet
|
||||||
{
|
{
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
20
constant/methane-1step/reactions
Normal file
20
constant/methane-1step/reactions
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
species
|
||||||
|
(
|
||||||
|
O2
|
||||||
|
H2O
|
||||||
|
CH4
|
||||||
|
CO2
|
||||||
|
N2
|
||||||
|
);
|
||||||
|
|
||||||
|
reactions
|
||||||
|
{
|
||||||
|
methaneReaction
|
||||||
|
{
|
||||||
|
type irreversibleArrheniusReaction;
|
||||||
|
reaction "CH4 + 2O2 = CO2 + 2H2O";
|
||||||
|
A 5.2e16;
|
||||||
|
beta 0;
|
||||||
|
Ta 14906;
|
||||||
|
}
|
||||||
|
}
|
||||||
129
constant/methane-1step/thermo.compressibleGas
Normal file
129
constant/methane-1step/thermo.compressibleGas
Normal file
|
|
@ -0,0 +1,129 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.0 |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
location "constant";
|
||||||
|
object thermo.compressibleGas;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
O2
|
||||||
|
{
|
||||||
|
specie
|
||||||
|
{
|
||||||
|
nMoles 1;
|
||||||
|
molWeight 31.9988;
|
||||||
|
}
|
||||||
|
thermodynamics
|
||||||
|
{
|
||||||
|
Tlow 200;
|
||||||
|
Thigh 5000;
|
||||||
|
Tcommon 1000;
|
||||||
|
highCpCoeffs ( 3.69758 0.00061352 -1.25884e-07 1.77528e-11 -1.13644e-15 -1233.93 3.18917 );
|
||||||
|
lowCpCoeffs ( 3.21294 0.00112749 -5.75615e-07 1.31388e-09 -8.76855e-13 -1005.25 6.03474 );
|
||||||
|
}
|
||||||
|
transport
|
||||||
|
{
|
||||||
|
As 1.67212e-06;
|
||||||
|
Ts 170.672;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
H2O
|
||||||
|
{
|
||||||
|
specie
|
||||||
|
{
|
||||||
|
nMoles 1;
|
||||||
|
molWeight 18.0153;
|
||||||
|
}
|
||||||
|
thermodynamics
|
||||||
|
{
|
||||||
|
Tlow 200;
|
||||||
|
Thigh 5000;
|
||||||
|
Tcommon 1000;
|
||||||
|
highCpCoeffs ( 2.67215 0.00305629 -8.73026e-07 1.201e-10 -6.39162e-15 -29899.2 6.86282 );
|
||||||
|
lowCpCoeffs ( 3.38684 0.00347498 -6.3547e-06 6.96858e-09 -2.50659e-12 -30208.1 2.59023 );
|
||||||
|
}
|
||||||
|
transport
|
||||||
|
{
|
||||||
|
As 1.67212e-06;
|
||||||
|
Ts 170.672;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CH4
|
||||||
|
{
|
||||||
|
specie
|
||||||
|
{
|
||||||
|
nMoles 1;
|
||||||
|
molWeight 16.0428;
|
||||||
|
}
|
||||||
|
thermodynamics
|
||||||
|
{
|
||||||
|
Tlow 200;
|
||||||
|
Thigh 6000;
|
||||||
|
Tcommon 1000;
|
||||||
|
highCpCoeffs ( 1.63543 0.0100844 -3.36924e-06 5.34973e-10 -3.15528e-14 -10005.6 9.9937 );
|
||||||
|
lowCpCoeffs ( 5.14988 -0.013671 4.91801e-05 -4.84744e-08 1.66694e-11 -10246.6 -4.64132 );
|
||||||
|
}
|
||||||
|
transport
|
||||||
|
{
|
||||||
|
As 1.67212e-06;
|
||||||
|
Ts 170.672;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CO2
|
||||||
|
{
|
||||||
|
specie
|
||||||
|
{
|
||||||
|
nMoles 1;
|
||||||
|
molWeight 44.01;
|
||||||
|
}
|
||||||
|
thermodynamics
|
||||||
|
{
|
||||||
|
Tlow 200;
|
||||||
|
Thigh 5000;
|
||||||
|
Tcommon 1000;
|
||||||
|
highCpCoeffs ( 4.45362 0.00314017 -1.27841e-06 2.394e-10 -1.66903e-14 -48967 -0.955396 );
|
||||||
|
lowCpCoeffs ( 2.27572 0.00992207 -1.04091e-05 6.86669e-09 -2.11728e-12 -48373.1 10.1885 );
|
||||||
|
}
|
||||||
|
transport
|
||||||
|
{
|
||||||
|
As 1.67212e-06;
|
||||||
|
Ts 170.672;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
N2
|
||||||
|
{
|
||||||
|
specie
|
||||||
|
{
|
||||||
|
nMoles 1;
|
||||||
|
molWeight 28.0134;
|
||||||
|
}
|
||||||
|
thermodynamics
|
||||||
|
{
|
||||||
|
Tlow 200;
|
||||||
|
Thigh 5000;
|
||||||
|
Tcommon 1000;
|
||||||
|
highCpCoeffs ( 2.92664 0.00148798 -5.68476e-07 1.0097e-10 -6.75335e-15 -922.798 5.98053 );
|
||||||
|
lowCpCoeffs ( 3.29868 0.00140824 -3.96322e-06 5.64152e-09 -2.44486e-12 -1020.9 3.95037 );
|
||||||
|
}
|
||||||
|
transport
|
||||||
|
{
|
||||||
|
As 1.67212e-06;
|
||||||
|
Ts 170.672;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
|
|
@ -18,33 +18,30 @@ convertToMeters 1e-3; // 1 m / 1000 mm
|
||||||
|
|
||||||
vertices
|
vertices
|
||||||
(
|
(
|
||||||
( 0.0000000000000e+00 -7.5000000000000e+00 -0.0000000000000e+00 ) // 0
|
( 0.0000000000000e+00 -5.0000000000000e+00 -0.0000000000000e+00 ) // 0
|
||||||
( 7.4997144229813e+00 -7.5000000000000e+00 -6.5449016237805e-02 ) // 1
|
( 4.9998096153209e+00 -5.0000000000000e+00 -4.3632677491870e-02 ) // 1
|
||||||
( 7.4997144229813e+00 7.5000000000000e+00 -6.5449016237805e-02 ) // 2
|
( 4.9998096153209e+00 5.0000000000000e+00 -4.3632677491870e-02 ) // 2
|
||||||
( 0.0000000000000e+00 7.5000000000000e+00 -0.0000000000000e+00 ) // 3
|
( 0.0000000000000e+00 5.0000000000000e+00 -0.0000000000000e+00 ) // 3
|
||||||
( 7.4997144229813e+00 -7.5000000000000e+00 6.5449016237805e-02 ) // 4
|
( 4.9998096153209e+00 -5.0000000000000e+00 4.3632677491870e-02 ) // 4
|
||||||
( 7.4997144229813e+00 7.5000000000000e+00 6.5449016237805e-02 ) // 5
|
( 4.9998096153209e+00 5.0000000000000e+00 4.3632677491870e-02 ) // 5
|
||||||
( 7.4997144229813e+00 -7.5000000000000e+00 -6.5449016237805e-02 ) // 6
|
( 4.9998096153209e+00 -5.0000000000000e+00 -4.3632677491870e-02 ) // 6
|
||||||
( 3.9998476922567e+01 -7.5000000000000e+00 -3.4906141993496e-01 ) // 7
|
( 3.9998476922567e+01 -5.0000000000000e+00 -3.4906141993496e-01 ) // 7
|
||||||
( 3.9998476922567e+01 7.5000000000000e+00 -3.4906141993496e-01 ) // 8
|
( 3.9998476922567e+01 5.0000000000000e+00 -3.4906141993496e-01 ) // 8
|
||||||
( 7.4997144229813e+00 7.5000000000000e+00 -6.5449016237805e-02 ) // 9
|
( 4.9998096153209e+00 5.0000000000000e+00 -4.3632677491870e-02 ) // 9
|
||||||
( 7.4997144229813e+00 -7.5000000000000e+00 6.5449016237805e-02 ) // 10
|
( 4.9998096153209e+00 -5.0000000000000e+00 4.3632677491870e-02 ) // 10
|
||||||
( 3.9998476922567e+01 -7.5000000000000e+00 3.4906141993496e-01 ) // 11
|
( 3.9998476922567e+01 -5.0000000000000e+00 3.4906141993496e-01 ) // 11
|
||||||
( 3.9998476922567e+01 7.5000000000000e+00 3.4906141993496e-01 ) // 12
|
( 3.9998476922567e+01 5.0000000000000e+00 3.4906141993496e-01 ) // 12
|
||||||
( 7.4997144229813e+00 7.5000000000000e+00 6.5449016237805e-02 ) // 13
|
( 4.9998096153209e+00 5.0000000000000e+00 4.3632677491870e-02 ) // 13
|
||||||
)
|
)
|
||||||
;
|
;
|
||||||
|
|
||||||
blocks
|
blocks
|
||||||
(
|
(
|
||||||
hex ( 0 1 2 3 0 4 5 3 ) ( 75 150 1 ) simpleGrading ( 1 1 1 ) // inner
|
hex ( 0 1 2 3 0 4 5 3 ) ( 50 100 1 ) simpleGrading ( 1 1 1 ) // inner
|
||||||
hex ( 6 7 8 9 10 11 12 13 ) ( 325 150 1 ) simpleGrading ( 1 1 1 ) // outer
|
hex ( 6 7 8 9 10 11 12 13 ) ( 350 100 1 ) simpleGrading ( 1 1 1 ) // outer
|
||||||
)
|
)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
edges
|
edges
|
||||||
(
|
(
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,8 @@ inertSpecie N2;
|
||||||
|
|
||||||
chemistryReader foamChemistryReader;
|
chemistryReader foamChemistryReader;
|
||||||
|
|
||||||
foamChemistryFile "$FOAM_CASE/constant/2step-be/reactions";
|
foamChemistryFile "$FOAM_CASE/constant/gri-belhi/grimech30.foam";
|
||||||
|
|
||||||
foamChemistryThermoFile "$FOAM_CASE/constant/2step-be/thermo.compressibleGas";
|
foamChemistryThermoFile "$FOAM_CASE/constant/gri-belhi/thermo30.foam";
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|
|
||||||
8
job.mpi
8
job.mpi
|
|
@ -1,12 +1,12 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#SBATCH -J uae_2step # Job name
|
#SBATCH -J 050ch4-2.4kV # Job name
|
||||||
#SBATCH -o job.%j.out # Name of stdout output file (%j expands to jobId)
|
#SBATCH -o job.%j.out # Name of stdout output file (%j expands to jobId)
|
||||||
#SBATCH -n 80 # Total number of mpi tasks requested
|
#SBATCH -n 200 # Total number of mpi tasks requested
|
||||||
#SBATCH --ntasks-per-node=16
|
#SBATCH --ntasks-per-node=20
|
||||||
#SBATCH --mail-user=ignis@postech.ac.kr
|
#SBATCH --mail-user=ignis@postech.ac.kr
|
||||||
#SBATCH --mail-type=ALL
|
#SBATCH --mail-type=ALL
|
||||||
|
|
||||||
# Launch MPI-based executable
|
# Launch MPI-based executable
|
||||||
|
|
||||||
mpirun reactingFoam -parallel
|
mpirun eReactingFoam -parallel
|
||||||
|
|
|
||||||
40879
solution.1step/CH4
Normal file
40879
solution.1step/CH4
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.1step/CO2
Normal file
40879
solution.1step/CO2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.1step/H2O
Normal file
40879
solution.1step/H2O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.1step/N2
Normal file
40879
solution.1step/N2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.1step/O2
Normal file
40879
solution.1step/O2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.1step/T
Normal file
40879
solution.1step/T
Normal file
File diff suppressed because it is too large
Load diff
40876
solution.1step/U
Normal file
40876
solution.1step/U
Normal file
File diff suppressed because it is too large
Load diff
70
solution.1step/Ydefault
Normal file
70
solution.1step/Ydefault
Normal file
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0.0038885";
|
||||||
|
object H;
|
||||||
|
}
|
||||||
|
|
||||||
|
dimensions [ 0 0 0 0 0 0 0 ];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
axis
|
||||||
|
{
|
||||||
|
type empty;
|
||||||
|
}
|
||||||
|
walls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
40064
solution.1step/dQ
Normal file
40064
solution.1step/dQ
Normal file
File diff suppressed because it is too large
Load diff
43113
solution.1step/h
Normal file
43113
solution.1step/h
Normal file
File diff suppressed because it is too large
Load diff
70
solution.1step/p
Normal file
70
solution.1step/p
Normal file
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "1";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 101325;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
160494
solution.1step/phi
Normal file
160494
solution.1step/phi
Normal file
File diff suppressed because it is too large
Load diff
60
solution.1step/qc
Normal file
60
solution.1step/qc
Normal file
|
|
@ -0,0 +1,60 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "1";
|
||||||
|
object qc;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [-1 0 1 0 0 1 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
63
solution.2400/AR
Normal file
63
solution.2400/AR
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0.25879";
|
||||||
|
object AR;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type inletOutlet;
|
||||||
|
inletValue uniform 0;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
40879
solution.2400/C
Normal file
40879
solution.2400/C
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H
Normal file
40879
solution.2400/C2H
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H2
Normal file
40879
solution.2400/C2H2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H3
Normal file
40879
solution.2400/C2H3
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H4
Normal file
40879
solution.2400/C2H4
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H5
Normal file
40879
solution.2400/C2H5
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C2H6
Normal file
40879
solution.2400/C2H6
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C3H7
Normal file
40879
solution.2400/C3H7
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/C3H8
Normal file
40879
solution.2400/C3H8
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH
Normal file
40879
solution.2400/CH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2
Normal file
40879
solution.2400/CH2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2(S)
Normal file
40879
solution.2400/CH2(S)
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2CHO
Normal file
40879
solution.2400/CH2CHO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2CO
Normal file
40879
solution.2400/CH2CO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2O
Normal file
40879
solution.2400/CH2O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH2OH
Normal file
40879
solution.2400/CH2OH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH3
Normal file
40879
solution.2400/CH3
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH3CHO
Normal file
40879
solution.2400/CH3CHO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH3O
Normal file
40879
solution.2400/CH3O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH3OH
Normal file
40879
solution.2400/CH3OH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CH4
Normal file
40879
solution.2400/CH4
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CN
Normal file
40879
solution.2400/CN
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CO
Normal file
40879
solution.2400/CO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/CO2
Normal file
40879
solution.2400/CO2
Normal file
File diff suppressed because it is too large
Load diff
40059
solution.2400/De
Normal file
40059
solution.2400/De
Normal file
File diff suppressed because it is too large
Load diff
40059
solution.2400/E
Normal file
40059
solution.2400/E
Normal file
File diff suppressed because it is too large
Load diff
59
solution.2400/E-
Normal file
59
solution.2400/E-
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0.25879";
|
||||||
|
object E-;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 0;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
40879
solution.2400/H
Normal file
40879
solution.2400/H
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/H2
Normal file
40879
solution.2400/H2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/H2CN
Normal file
40879
solution.2400/H2CN
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/H2O
Normal file
40879
solution.2400/H2O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/H2O2
Normal file
40879
solution.2400/H2O2
Normal file
File diff suppressed because it is too large
Load diff
40061
solution.2400/H3O+
Normal file
40061
solution.2400/H3O+
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCCO
Normal file
40879
solution.2400/HCCO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCCOH
Normal file
40879
solution.2400/HCCOH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCN
Normal file
40879
solution.2400/HCN
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCNN
Normal file
40879
solution.2400/HCNN
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCNO
Normal file
40879
solution.2400/HCNO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HCO
Normal file
40879
solution.2400/HCO
Normal file
File diff suppressed because it is too large
Load diff
40061
solution.2400/HCO+
Normal file
40061
solution.2400/HCO+
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HNCO
Normal file
40879
solution.2400/HNCO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HNO
Normal file
40879
solution.2400/HNO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HO2
Normal file
40879
solution.2400/HO2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/HOCN
Normal file
40879
solution.2400/HOCN
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/N
Normal file
40879
solution.2400/N
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/N2
Normal file
40879
solution.2400/N2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/N2O
Normal file
40879
solution.2400/N2O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NCO
Normal file
40879
solution.2400/NCO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NH
Normal file
40879
solution.2400/NH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NH2
Normal file
40879
solution.2400/NH2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NH3
Normal file
40879
solution.2400/NH3
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NNH
Normal file
40879
solution.2400/NNH
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NO
Normal file
40879
solution.2400/NO
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/NO2
Normal file
40879
solution.2400/NO2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/O
Normal file
40879
solution.2400/O
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/O2
Normal file
40879
solution.2400/O2
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/OH
Normal file
40879
solution.2400/OH
Normal file
File diff suppressed because it is too large
Load diff
40079
solution.2400/Phi
Normal file
40079
solution.2400/Phi
Normal file
File diff suppressed because it is too large
Load diff
40879
solution.2400/T
Normal file
40879
solution.2400/T
Normal file
File diff suppressed because it is too large
Load diff
40061
solution.2400/Te
Normal file
40061
solution.2400/Te
Normal file
File diff suppressed because it is too large
Load diff
40876
solution.2400/U
Normal file
40876
solution.2400/U
Normal file
File diff suppressed because it is too large
Load diff
40984
solution.2400/Udrift
Normal file
40984
solution.2400/Udrift
Normal file
File diff suppressed because it is too large
Load diff
40059
solution.2400/Uthermal
Normal file
40059
solution.2400/Uthermal
Normal file
File diff suppressed because it is too large
Load diff
40064
solution.2400/dQ
Normal file
40064
solution.2400/dQ
Normal file
File diff suppressed because it is too large
Load diff
43113
solution.2400/h
Normal file
43113
solution.2400/h
Normal file
File diff suppressed because it is too large
Load diff
40059
solution.2400/mue
Normal file
40059
solution.2400/mue
Normal file
File diff suppressed because it is too large
Load diff
40061
solution.2400/ne
Normal file
40061
solution.2400/ne
Normal file
File diff suppressed because it is too large
Load diff
70
solution.2400/p
Normal file
70
solution.2400/p
Normal file
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 2.4.x |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0.25879";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 101325;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
nzLow
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
nzUpp
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
coLow
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
coUpp
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
outlet
|
||||||
|
{
|
||||||
|
type totalPressure;
|
||||||
|
rho none;
|
||||||
|
psi none;
|
||||||
|
gamma 1;
|
||||||
|
p0 uniform 101325;
|
||||||
|
value uniform 101325;
|
||||||
|
}
|
||||||
|
front
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
back
|
||||||
|
{
|
||||||
|
type wedge;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
160494
solution.2400/phi
Normal file
160494
solution.2400/phi
Normal file
File diff suppressed because it is too large
Load diff
160494
solution.2400/phi.E-
Normal file
160494
solution.2400/phi.E-
Normal file
File diff suppressed because it is too large
Load diff
160494
solution.2400/phi.H3O+
Normal file
160494
solution.2400/phi.H3O+
Normal file
File diff suppressed because it is too large
Load diff
160494
solution.2400/phi.HCO+
Normal file
160494
solution.2400/phi.HCO+
Normal file
File diff suppressed because it is too large
Load diff
40576
solution.2400/qc
Normal file
40576
solution.2400/qc
Normal file
File diff suppressed because it is too large
Load diff
40876
solution.2400/rho
Normal file
40876
solution.2400/rho
Normal file
File diff suppressed because it is too large
Load diff
40059
solution.2400/rhoq
Normal file
40059
solution.2400/rhoq
Normal file
File diff suppressed because it is too large
Load diff
80382
solution.2400/snE
Normal file
80382
solution.2400/snE
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue