Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions examples/dfLowMachFoam/twoD_SandiaD_EDC_Trans/0/Chi
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 Chi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 0 -1 0 0 0 0];

internalField uniform 0;

boundaryField
{
wallTube
{
type zeroGradient;
}

outlet
{
type zeroGradient;
}

inletPilot
{
type fixedValue;
value uniform 0.0;
}

inletAir
{
type fixedValue;
value uniform 0;
}

wallOutside
{
type zeroGradient;
}

inletCH4
{
type fixedValue;
value uniform 0.0;
}

frontAndBack_pos
{
type wedge;
}

frontAndBack_neg
{
type wedge;
}
}


// ************************************************************************* //
69 changes: 69 additions & 0 deletions examples/dfLowMachFoam/twoD_SandiaD_EDC_Trans/0/Z
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 Z;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 0 0 0 0 0 0];

internalField uniform 0;

boundaryField
{
wallTube
{
type zeroGradient;
}

outlet
{
type zeroGradient;
}

inletPilot
{
type fixedValue;
value uniform 0.0;
}

inletAir
{
type fixedValue;
value uniform 0;
}

wallOutside
{
type zeroGradient;
}

inletCH4
{
type fixedValue;
value uniform 0.1561;
}

frontAndBack_pos
{
type wedge;
}

frontAndBack_neg
{
type wedge;
}
}


// ************************************************************************* //
69 changes: 69 additions & 0 deletions examples/dfLowMachFoam/twoD_SandiaD_EDC_Trans/0/Zvar
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 Zvar;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 0 0 0 0 0 0];

internalField uniform 0.0;

boundaryField
{
wallTube
{
type zeroGradient;
}

outlet
{
type zeroGradient;
}

inletPilot
{
type fixedValue;
value uniform 0.0;
}

inletAir
{
type fixedValue;
value uniform 0;
}

wallOutside
{
type zeroGradient;
}

inletCH4
{
type fixedValue;
value uniform 0;
}

frontAndBack_pos
{
type wedge;
}

frontAndBack_neg
{
type wedge;
}
}


// ************************************************************************* //
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

combustionModel EDC;
combustionModel PaSR;//EDC; PaSR

EDCCoeffs
{
Expand All @@ -24,7 +24,34 @@ EDCCoeffs

PaSRCoeffs
{
Cmix 0.03;
mixingScale
{
type globalScale;//globalScale,kolmogorovScale,geometriMeanScale,dynamicScale

globalScaleCoeffs
{
Cmix 0.01;
}

dynamicScaleCoeffs
{
ChiType algebraic;//algebraic; transport
}

}

chemistryScale
{
type globalConvertion;//formationRate,globalConvertion

globalConvertionCoeffs
{
fuel CH4;
oxidizer O2;
}

}

}

// ************************************************************************* //