Creation of OpenFOAM-dev repository 15/04/2008

This commit is contained in:
OpenFOAM-admin
2008-04-15 18:56:58 +01:00
commit 3170c7c0c9
9896 changed files with 4016171 additions and 0 deletions

48
etc/apps/FoamX/FoamX.cfg Normal file
View File

@ -0,0 +1,48 @@
/*----------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Dictionary
FoamX.cfg
Description
FoamX User Properties.
\*----------------------------------------------------------------------------*/
availableModules
(
FoamX.Modules.CaseEditor.CaseEditorModule
);
processControl
{
// Command to use for remote invocation
remoteShell "ssh";
// Maximum time (in seconds) command can take
timeOut 60;
}
// ************************************************************************* //

View File

@ -0,0 +1,33 @@
#- FoamX Client Configuration.
#- Overall size of FoamX
#FoamX.FrameWidth=1000
#FoamX.FrameHeight=600
#- Browser for online documentation (default is mozilla)
#FoamX.Browser=konqueror
#- Editor to use when error upon reading dictionary.
#- internal: basic built-in editor
#- other : command line to start up external editor. Gets started with
#- $FILE : filename
#- $START: starting linenumber of error
#- $END : ending linenumber of error
#- $COL : column of error
#
#FoamX.Editor=internal
#FoamX.Editor=nedit +$START -lm C++ $FILE
#FoamX.Editor=xemacs +$START $FILE
#FoamX.Editor=xvi +$START $FILE
#- Amount of timeout (milliseconds) when starting a CaseBrowser or CaseServer.
#FoamX.Sleep=500
#FoamX.NRetries=20
#- Internal debug switches
#FoamX.DebugLevel=3
#- nsd settings. Modify only if you have problems and know what you are doing.
#- (note: initialhost should be the machine runFoamXHB is run on)
#org.omg.CORBA.ORBInitialPort=1234
#org.omg.CORBA.ORBInitialHost=penfold

79
etc/apps/FoamX/createFlag Normal file
View File

@ -0,0 +1,79 @@
#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd.
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Script
# createFlag
#
# Description
# Creates a FoamX configuration file for a command line argument flag,
# e.g. -ascii, in the $FOAMX_CONFIG/entries/arguments directory.
#------------------------------------------------------------------------------
writeFile () {
cat <<EOF
/*---------------------------------------------------------------------------*\\
| ========= | |
| \\\\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\\\ / O peration | Version: 1.4 |
| \\\\ / A nd | Web: http://www.openfoam.org |
| \\\\/ M anipulation | |
\*---------------------------------------------------------------------------*/
$1
{
type selection;
displayName "[$1]";
entries
{
off
{
type compound;
entries {}
}
on
{
type string;
default "-$1";
editable 0;
}
}
}
EOF
}
if [ $# != 1 ] ; then
echo "Usage: $0 <argumentFlagName>"
exit 1
fi
FILE=$FOAMX_CONFIG/entries/arguments/$1.cfg
if [ -e $FILE ] ; then
echo "File $FILE already exists"
exit 1
fi
echo "Creating file $FILE"
writeFile $1 > $FILE

View File

@ -0,0 +1,96 @@
#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd.
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Script
# createFlagWithArgument
#
# Description
# Creates a FoamX configuration file for a command line flag with argument,
# e.g. -scale 0.1, in the $FOAMX_CONFIG/entries/arguments directory.
# The argument entry must be edited, e.g. to specify the type.
#------------------------------------------------------------------------------
writeFile () {
cat <<EOF
/*---------------------------------------------------------------------------*\\
| ========= | |
| \\\\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\\\ / O peration | Version: 1.4 |
| \\\\ / A nd | Web: http://www.openfoam.org |
| \\\\/ M anipulation | |
\*---------------------------------------------------------------------------*/
$1
{
type selection;
displayName "[$1]";
entries
{
off
{
type compound;
entries {}
}
on
{
type compound;
entries
{
$1
{
type string;
default "-$1";
editable 0;
}
$2
{
type ****;
default ****;
}
}
}
}
}
EOF
}
if [ $# != 2 ] ; then
echo "Usage: $0 <flagName> <argumentName>"
exit 1
fi
FILE=$FOAMX_CONFIG/entries/arguments/$1.cfg
if [ -e $FILE ] ; then
echo "File $FILE exists"
exit 1
fi
echo "Creating file $FILE"
writeFile $1 $2 > $FILE
echo "YOU MUST EDIT SOME ENTRIES (****) IN FILE:"
echo " $FILE"

View File

@ -0,0 +1,40 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root "";
case "";
instance "";
local "";
class dictionary;
object thermophysicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
thermoType hhuMixtureThermo<homogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>>;
stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [0 0 0 0 0 0 0] 15.675;
fuel fuel 1 44.0962 200 5000 1000 7.53414 0.0188722 -6.27185e-06 9.14756e-10 -4.78381e-14 -16467.5 -17.8923 0.933554 0.0264246 6.10597e-06 -2.19775e-08 9.51493e-12 -13958.5 19.2017 1.67212e-06 170.672;
oxidant oxidant 1 28.8504 200 6000 1000 3.10205 0.00123963 -4.17512e-07 6.60292e-11 -3.87448e-15 -985.517 5.35187 3.58378 -0.0007269 1.66985e-06 -1.08452e-10 -4.31951e-13 -1050.53 3.11223 1.67212e-06 170.672;
reactants reactants 24.8095 29.4649 200 5000 1000 3.28069 0.00195035 -6.53483e-07 1.00239e-10 -5.64653e-15 -1609.55 4.41496 3.47696 0.000367499 1.84866e-06 -9.8993e-10 -3.10214e-14 -1570.81 3.76075 1.67212e-06 170.672;
products products 1 28.3233 200 5000 1000 3.106 0.00179682 -5.94382e-07 9.04998e-11 -5.08033e-15 -11003.7 5.11872 3.49612 0.000650364 -2.08029e-07 1.2291e-09 -7.73697e-13 -11080.3 3.18978 1.67212e-06 170.672;
burntProducts burntProducts 25.8095 28.3233 200 6000 1000 3.106 0.00179682 -5.94382e-07 9.04998e-11 -5.08033e-15 -11003.7 5.11872 3.49612 0.000650364 -2.08029e-07 1.2291e-09 -7.73697e-13 -11080.3 3.18978 1.67212e-06 170.672;
// ************************************************************************* //

View File

@ -0,0 +1,31 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root ".OpenFOAM-1.2/apps/FoamX";
case "defaults";
instance "constant";
local "";
class dictionary;
object thermophysicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Thermophysical model
thermoType hThermo<pureMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>>;
mixture air 1 28.9 1007 0 1.84e-05 0.7;
// ************************************************************************* //

View File

@ -0,0 +1,56 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root ".OpenFOAM-1.2/apps/FoamX";
case "defaults";
instance "system";
local "";
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0;
deltaT 0;
writeControl timeStep;
writeInterval 1;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
graphFormat raw;
runTimeModifiable yes;
// ************************************************************************* //

View File

@ -0,0 +1,62 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root ".OpenFOAM-1.2/apps/FoamX";
case "defaults";
instance "system";
local "";
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0;
deltaT 0;
writeControl timeStep;
writeInterval 1;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
graphFormat raw;
runTimeModifiable yes;
adjustTimeStep no;
maxCo 0.5;
maxDeltaT 0;
// ************************************************************************* //

View File

@ -0,0 +1,56 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root ".OpenFOAM-1.2/apps/FoamX";
case "defaults";
instance "system";
local "";
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0;
deltaT 1;
writeControl timeStep;
writeInterval 1;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
graphFormat raw;
runTimeModifiable yes;
// ************************************************************************* //

View File

@ -0,0 +1,668 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
DebugSwitches
{
type dictionary;
entries
{
aC11H10 debugSwitch;
addCell debugSwitch;
addFace debugSwitch;
addPoint debugSwitch;
algebraicPair debugSwitch;
amgCoupledInterface debugSwitch;
amgInterfaceField debugSwitch;
anisotropic debugSwitch;
APIdiffCoefFunc debugSwitch;
Ar debugSwitch;
areaScalarField debugSwitch;
areaTensorField debugSwitch;
areaVectorField debugSwitch;
atomizationModel debugSwitch;
attachDetach debugSwitch;
backward debugSwitch;
basePatch debugSwitch;
basicMesh debugSwitch;
basicMixture debugSwitch;
basicThermo debugSwitch;
bC11H10 debugSwitch;
BDCG debugSwitch;
BICCG debugSwitch;
BirdCarreau debugSwitch;
blended debugSwitch;
blobsSheetAtomization debugSwitch;
blobsSwirlInjector debugSwitch;
booleanSurface debugSwitch;
boundaryCutter debugSwitch;
boundaryMesh debugSwitch;
boundaryToFace debugSwitch;
bounded debugSwitch;
boundedBackward debugSwitch;
boxToCell debugSwitch;
boxToFace debugSwitch;
boxToPoint debugSwitch;
breakupModel debugSwitch;
C10H22 debugSwitch;
C12H26 debugSwitch;
C13H28 debugSwitch;
C14H30 debugSwitch;
C16H34 debugSwitch;
C2H5OH debugSwitch;
C2H6 debugSwitch;
C2H6O debugSwitch;
C3H6O debugSwitch;
C3H8 debugSwitch;
C4H10O debugSwitch;
C6H14 debugSwitch;
C6H6 debugSwitch;
C7H16 debugSwitch;
C7H8 debugSwitch;
C8H10 debugSwitch;
C8H18 debugSwitch;
C9H20 debugSwitch;
calculated debugSwitch;
CallbackRegistry debugSwitch;
Cartesian debugSwitch;
cell debugSwitch;
cellClassification debugSwitch;
cellCuts debugSwitch;
cellDistFuncs debugSwitch;
cellLimited debugSwitch;
cellList debugSwitch;
cellLooper debugSwitch;
cellMDLimited debugSwitch;
cellModeller debugSwitch;
cellPoint debugSwitch;
cellPointFace debugSwitch;
cellSet debugSwitch;
cellToCell debugSwitch;
cellToFace debugSwitch;
cellToPoint debugSwitch;
cellZone debugSwitch;
CH3OH debugSwitch;
chemistryReader debugSwitch;
chemkinReader debugSwitch;
ChomiakInjector debugSwitch;
clippedLinear debugSwitch;
Cloud debugSwitch;
CoEuler debugSwitch;
CoGamma2 debugSwitch;
collisionModel debugSwitch;
commonRailInjector debugSwitch;
commSchedule debugSwitch;
componentMixed debugSwitch;
compound debugSwitch;
const debugSwitch;
constant debugSwitch;
constInjector debugSwitch;
coordinateSystem debugSwitch;
corrected debugSwitch;
coupled debugSwitch;
CrankNicholson debugSwitch;
CrossPowerLaw debugSwitch;
cubeRootVol debugSwitch;
cubic debugSwitch;
cubicCorrection debugSwitch;
cyclic debugSwitch;
cyclicLduCoupledInterface debugSwitch;
cyclicLduInterface debugSwitch;
cyclicLduInterfaceField debugSwitch;
cylindrical debugSwitch;
database debugSwitch;
dataSchedule debugSwitch;
DCG debugSwitch;
DeardorffDiffStress debugSwitch;
default debugSwitch;
definedHollowConeInjector debugSwitch;
definedInjector debugSwitch;
definedPressureSwirlInjector debugSwitch;
deformationEnergy debugSwitch;
diagonal debugSwitch;
diagonalSolver debugSwitch;
diagTensorField debugSwitch;
DIC debugSwitch;
DICGaussSeidel debugSwitch;
dictionary debugSwitch;
DILU debugSwitch;
dimensionedTypes debugSwitch;
dimensionSet debugSwitch;
directCombineFaces debugSwitch;
directDuplicatePoints debugSwitch;
directHexRef8 debugSwitch;
directionMixed debugSwitch;
directMappedPatch debugSwitch;
directMeshCutAndRemove debugSwitch;
directPolyTopoChange debugSwitch;
directRemoveCells debugSwitch;
directRemoveFaces debugSwitch;
directRemovePoints debugSwitch;
disallowDefaultFvPatchField debugSwitch;
dispersionLESModel debugSwitch;
dispersionModel debugSwitch;
dispersionRASModel debugSwitch;
distortionEnergy debugSwitch;
downwind debugSwitch;
dragModel debugSwitch;
dynMixedSmagorinsky debugSwitch;
dynOneEqEddy debugSwitch;
dynSmagorinsky debugSwitch;
edgeInterpolation debugSwitch;
edgeIntersections debugSwitch;
edgeList debugSwitch;
edgeScalarField debugSwitch;
edgeSurface debugSwitch;
edgeTensorField debugSwitch;
edgeVectorField debugSwitch;
elementScalarField debugSwitch;
elementTensorField debugSwitch;
elementVectorField debugSwitch;
empty debugSwitch;
engineMesh debugSwitch;
enrichedPatch debugSwitch;
entry debugSwitch;
ETAB debugSwitch;
Euler debugSwitch;
evaporationModel debugSwitch;
exponential debugSwitch;
extendedLeastSquares debugSwitch;
extendedLeastSquaresVectors debugSwitch;
fa debugSwitch;
faBoundaryMesh debugSwitch;
faceAreaPair debugSwitch;
FaceCellWave debugSwitch;
faceCoupleInfo debugSwitch;
faceLimited debugSwitch;
faceList debugSwitch;
faceMDLimited debugSwitch;
faceSet debugSwitch;
faceToCell debugSwitch;
faceToFace debugSwitch;
faceToPoint debugSwitch;
faceZone debugSwitch;
faMesh debugSwitch;
faPatchField debugSwitch;
faScalarMatrix debugSwitch;
faSchemes debugSwitch;
fastLduTriLookup debugSwitch;
faTensorMatrix debugSwitch;
faVectorMatrix debugSwitch;
FDIC debugSwitch;
featureEdgeMesh debugSwitch;
features debugSwitch;
fields debugSwitch;
fieldToCell debugSwitch;
file debugSwitch;
fileName debugSwitch;
finiteVolume debugSwitch;
fixedEnthalpy debugSwitch;
fixedFluxBuoyantPressure debugSwitch;
fixedFluxPressure debugSwitch;
fixedGradient debugSwitch;
fixedNormalSlip debugSwitch;
fixedUnburntEnthalpy debugSwitch;
fixedValue debugSwitch;
fixedValueOutflow debugSwitch;
fluxCorrectedVelocity debugSwitch;
foamChemistryReader debugSwitch;
FoamX debugSwitch;
FoamXError debugSwitch;
fourth debugSwitch;
freestream debugSwitch;
freestreamPressure debugSwitch;
fv debugSwitch;
fvMatrix debugSwitch;
fvMesh debugSwitch;
fvMeshDistribute debugSwitch;
fvMotionSolver debugSwitch;
fvPatchField debugSwitch;
fvScalarMatrix debugSwitch;
fvSchemes debugSwitch;
fvSolution debugSwitch;
fvSphericalTensorMatrix debugSwitch;
fvSymmTensorMatrix debugSwitch;
fvTensorMatrix debugSwitch;
fvVectorMatrix debugSwitch;
GAMG debugSwitch;
gamgAgglomeration debugSwitch;
gamgInterface debugSwitch;
gamgInterfaceField debugSwitch;
Gamma debugSwitch;
Gamma01 debugSwitch;
Gamma2 debugSwitch;
Gamma201 debugSwitch;
Gamma2Limit debugSwitch;
Gamma2V debugSwitch;
GammaLimit debugSwitch;
GammaV debugSwitch;
Gauss debugSwitch;
GaussSeidel debugSwitch;
general debugSwitch;
geomCellLooper debugSwitch;
geometricFields debugSwitch;
geometricSurfacePatch debugSwitch;
global debugSwitch;
globalMeshData debugSwitch;
globalPoints debugSwitch;
globalProcessor debugSwitch;
gnuplot debugSwitch;
gradientDispersionRAS debugSwitch;
gradientEnthalpy debugSwitch;
gradientUnburntEnthalpy debugSwitch;
Gulders debugSwitch;
GuldersEGR debugSwitch;
H2O debugSwitch;
harmonic debugSwitch;
hashTable debugSwitch;
HashTable debugSwitch;
hCombustionThermo debugSwitch;
heatTransferModel debugSwitch;
hexCellLooper debugSwitch;
hexRef8 debugSwitch;
hhuCombustionThermo debugSwitch;
hhuMixtureThermo<egrMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<egrMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<homogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<homogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<inhomogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<inhomogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<veryInhomogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hhuMixtureThermo<veryInhomogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<dieselMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<homogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<homogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<inhomogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<inhomogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<multiComponentMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<reactingMixture> debugSwitch;
hMixtureThermo<veryInhomogeneousMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hMixtureThermo<veryInhomogeneousMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
hollowConeInjector debugSwitch;
hThermo<pureMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hThermo<pureMixture<sutherlandTransport<specieThermo<hConstThermo<perfectGas>>>>> debugSwitch;
hThermo<pureMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>>> debugSwitch;
IC8H18 debugSwitch;
ICCG debugSwitch;
IDEA debugSwitch;
IFstream debugSwitch;
indexedOctree debugSwitch;
indexedParticle debugSwitch;
injectorModel debugSwitch;
injectorType debugSwitch;
inletOutlet debugSwitch;
interpolations debugSwitch;
intersectedSurface debugSwitch;
inverseLinear debugSwitch;
IOobject debugSwitch;
IOptrList<injector> debugSwitch;
IOPtrList<injector> debugSwitch;
IOPtrList<MRFZone> debugSwitch;
IOPtrList<porousZone> debugSwitch;
jplot debugSwitch;
kEpsilon debugSwitch;
kOmegaSST debugSwitch;
KRR4 debugSwitch;
labelField debugSwitch;
labelList debugSwitch;
labelListList debugSwitch;
labelToCell debugSwitch;
labelToFace debugSwitch;
labelToPoint debugSwitch;
LamBremhorstKE debugSwitch;
laminar debugSwitch;
laminarFlameSpeed debugSwitch;
laplace debugSwitch;
LaunderGibsonRSTM debugSwitch;
LaunderSharmaKE debugSwitch;
layerAdditionRemoval debugSwitch;
layered debugSwitch;
lduCoupledInterface debugSwitch;
lduInterface debugSwitch;
lduInterfaceField debugSwitch;
lduMatrix debugSwitch;
lduMesh debugSwitch;
leastSquares debugSwitch;
leastSquaresVectors debugSwitch;
LESdelta debugSwitch;
LESfilter debugSwitch;
LESmodel debugSwitch;
level debugSwitch;
licence debugSwitch;
LienCubicKE debugSwitch;
LienCubicKELowRe debugSwitch;
LienLeschzinerLowRe debugSwitch;
limited debugSwitch;
limitedCubic debugSwitch;
limitedCubic01 debugSwitch;
limitedCubicV debugSwitch;
limitedGamma debugSwitch;
limitedLimitedCubic debugSwitch;
limitedLimitedLinear debugSwitch;
limitedLinear debugSwitch;
limitedLinear01 debugSwitch;
limitedLinearV debugSwitch;
limitedMUSCL debugSwitch;
LimitedMUSCL debugSwitch;
limitedSuperBee debugSwitch;
limitedSurfaceInterpolationScheme debugSwitch;
limitedVanLeer debugSwitch;
linear debugSwitch;
linearUpwind debugSwitch;
linearUpwindV debugSwitch;
liquid debugSwitch;
LISA debugSwitch;
localBlended debugSwitch;
localMax debugSwitch;
localMin debugSwitch;
localPointRegion debugSwitch;
locDynOneEqEddy debugSwitch;
lowReOneEqEddy debugSwitch;
LRR debugSwitch;
LRRDiffStress debugSwitch;
MB debugSwitch;
mesh debugSwitch;
meshCutAndRemove debugSwitch;
meshCutter debugSwitch;
meshModifier debugSwitch;
meshMorphEngine debugSwitch;
meshSearch debugSwitch;
meshToMesh debugSwitch;
meshWave debugSwitch;
MeshWave debugSwitch;
midPoint debugSwitch;
minMod debugSwitch;
mixed debugSwitch;
mixedEnthalpy debugSwitch;
mixedSmagorinsky debugSwitch;
mixedUnburntEnthalpy debugSwitch;
modifyCell debugSwitch;
modifyFace debugSwitch;
modifyPoint debugSwitch;
motionDiff debugSwitch;
motionSmoother debugSwitch;
motionSolver debugSwitch;
movingWallVelocity debugSwitch;
multiDirRefinement debugSwitch;
multivariateSelection debugSwitch;
MUSCL debugSwitch;
MUSCL01 debugSwitch;
muSgsWallFunction debugSwitch;
N2 debugSwitch;
nbrToCell debugSwitch;
nearestToCell debugSwitch;
Newtonian debugSwitch;
noDragModel debugSwitch;
none debugSwitch;
NonlinearKEShih debugSwitch;
normal debugSwitch;
normalToFace debugSwitch;
NSRDSfunc0 debugSwitch;
NSRDSfunc1 debugSwitch;
NSRDSfunc14 debugSwitch;
NSRDSfunc2 debugSwitch;
NSRDSfunc3 debugSwitch;
NSRDSfunc4 debugSwitch;
NSRDSfunc5 debugSwitch;
NSRDSfunc6 debugSwitch;
NSRDSfunc7 debugSwitch;
nuSgsWallFunction debugSwitch;
nutStandardRoughWallFunction debugSwitch;
nutStandardWallFunction debugSwitch;
nutWallFunction debugSwitch;
objectRegistry debugSwitch;
octree debugSwitch;
octreeDataEdges debugSwitch;
octreeDataFace debugSwitch;
octreeDataFaceList debugSwitch;
octreeDataTriSurface debugSwitch;
ODESolver debugSwitch;
off debugSwitch;
OFstream debugSwitch;
oneEqEddy debugSwitch;
orientedSurface debugSwitch;
ORourke debugSwitch;
oscillatingFixedValue debugSwitch;
outletInlet debugSwitch;
outletStabilised debugSwitch;
PackedList debugSwitch;
pair debugSwitch;
parabolicCylindrical debugSwitch;
parallelInfo debugSwitch;
parcel debugSwitch;
ParSortableList debugSwitch;
partialSlip debugSwitch;
passiveParticle debugSwitch;
patch debugSwitch;
patchEnhanced debugSwitch;
patchFields debugSwitch;
patchToFace debugSwitch;
PatchToPatchInterpolation debugSwitch;
patchZones debugSwitch;
PBiCG debugSwitch;
PCG debugSwitch;
pdf debugSwitch;
perfectInterface debugSwitch;
Phi debugSwitch;
PointEdgeWave debugSwitch;
pointIndexHitList debugSwitch;
PointPatchField debugSwitch;
pointPatchInterpolation debugSwitch;
pointScalarField debugSwitch;
pointScalarField::DimensionedInternalField debugSwitch;
pointSet debugSwitch;
pointSphericalTensorField debugSwitch;
pointSphericalTensorField::DimensionedInternalField debugSwitch;
pointSymmTensorField debugSwitch;
pointSymmTensorField::DimensionedInternalField debugSwitch;
pointTensorField debugSwitch;
pointTensorField::DimensionedInternalField debugSwitch;
pointToCell debugSwitch;
pointToFace debugSwitch;
pointToPoint debugSwitch;
pointVectorField debugSwitch;
pointVectorField::DimensionedInternalField debugSwitch;
pointZone debugSwitch;
polyBoundaryMesh debugSwitch;
polyMesh debugSwitch;
polyMeshMorphEngine debugSwitch;
polyTopoChange debugSwitch;
polyTopoChanger debugSwitch;
Prandtl debugSwitch;
pressureDirectedInletOutletVelocity debugSwitch;
pressureDirectedInletVelocity debugSwitch;
pressureInletOutletVelocity debugSwitch;
pressureInletUniformVelocity debugSwitch;
pressureInletVelocity debugSwitch;
pressureSwirlInjector debugSwitch;
pressureTransmissive debugSwitch;
primitiveMesh debugSwitch;
PrimitivePatch debugSwitch;
probes debugSwitch;
processor debugSwitch;
processorLduCoupledInterface debugSwitch;
processorLduInterface debugSwitch;
processorLduInterfaceField debugSwitch;
pseudoSolid debugSwitch;
Pstream debugSwitch;
pureMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>> debugSwitch;
pureMixture<sutherlandTransport<specieThermo<hConstThermo<perfectGas>>>> debugSwitch;
pureMixture<sutherlandTransport<specieThermo<janafThermo<perfectGas>>>> debugSwitch;
quadratic debugSwitch;
QUICK debugSwitch;
QZeta debugSwitch;
RanzMarshall debugSwitch;
raw debugSwitch;
reaction debugSwitch;
realizableKE debugSwitch;
refinementHistory debugSwitch;
refinementIterator debugSwitch;
reflect debugSwitch;
regionSplit debugSwitch;
regIOobject debugSwitch;
ReitzDiwakar debugSwitch;
ReitzKHRT debugSwitch;
remove debugSwitch;
removeCell debugSwitch;
removeCells debugSwitch;
removeFace debugSwitch;
removeFaces debugSwitch;
removePoint debugSwitch;
repatchPolyMesh debugSwitch;
reverseLinear debugSwitch;
rhoMUSCL debugSwitch;
RK debugSwitch;
RNGkEpsilon debugSwitch;
RosinRammler debugSwitch;
rotatedBoxToCell debugSwitch;
rotatingPressureInletOutletVelocity debugSwitch;
rotatingTotalPressure debugSwitch;
RutlandFlashBoil debugSwitch;
saturateEvaporationModel debugSwitch;
scalarField debugSwitch;
scaleSimilarity debugSwitch;
setUpdater debugSwitch;
SFCD debugSwitch;
SFCDV debugSwitch;
shapeList debugSwitch;
shapeToCell debugSwitch;
SHF debugSwitch;
SIBS debugSwitch;
simple debugSwitch;
skewCorrected debugSwitch;
skewCorrectionVectors debugSwitch;
skewLinear debugSwitch;
sliced debugSwitch;
slidingInterface debugSwitch;
slip debugSwitch;
Smagorinsky debugSwitch;
Smagorinsky2 debugSwitch;
smooth debugSwitch;
smoothSolver debugSwitch;
solution debugSwitch;
SpalartAllmaras debugSwitch;
spectEddyVisc debugSwitch;
spherical debugSwitch;
sphericalTensorField debugSwitch;
standardDragModel debugSwitch;
standardEvaporationModel debugSwitch;
static debugSwitch;
StaticHashTable debugSwitch;
steadyState debugSwitch;
stochasticDispersionRAS debugSwitch;
string debugSwitch;
SuperBee debugSwitch;
SuperBee01 debugSwitch;
supersonicFreestream debugSwitch;
surfaceFeatures debugSwitch;
surfaceInterpolation debugSwitch;
surfaceInterpolationScheme debugSwitch;
surfaceIntersection debugSwitch;
surfaceNormalFixedValue debugSwitch;
surfacePatch debugSwitch;
surfacePatchIOList debugSwitch;
surfaceScalarField debugSwitch;
surfaceScalarField::DimensionedInternalField debugSwitch;
surfaceSnap debugSwitch;
surfaceSphericalTensorField debugSwitch;
surfaceSphericalTensorField::DimensionedInternalField debugSwitch;
surfaceSymmTensorField debugSwitch;
surfaceSymmTensorField::DimensionedInternalField debugSwitch;
surfaceTensorField debugSwitch;
surfaceTensorField::DimensionedInternalField debugSwitch;
surfaceToCell debugSwitch;
surfaceToPoint debugSwitch;
surfaceVectorField debugSwitch;
surfaceVectorField::DimensionedInternalField debugSwitch;
swirlInjector debugSwitch;
symmetryPlane debugSwitch;
symmTensorField debugSwitch;
syringePressure debugSwitch;
TAB debugSwitch;
tensorField debugSwitch;
tetFemMatrix debugSwitch;
tetFemScalarMatrix debugSwitch;
tetFemTensorMatrix debugSwitch;
tetFemVectorMatrix debugSwitch;
tetPointScalarField debugSwitch;
tetPointTensorField debugSwitch;
tetPointVectorField debugSwitch;
tetPolyMesh debugSwitch;
tetPolyPatchFields debugSwitch;
thermo debugSwitch;
thermophysicalFunction debugSwitch;
time debugSwitch;
timer debugSwitch;
timeVaryingMappedFixedValue debugSwitch;
timeVaryingUniformFixedValue debugSwitch;
topoAction debugSwitch;
topoCellLooper debugSwitch;
topoSet debugSwitch;
topoSetSource debugSwitch;
toroidal debugSwitch;
totalPressure debugSwitch;
totalTemperature debugSwitch;
trajectory debugSwitch;
transform debugSwitch;
transportModel debugSwitch;
treeDataTriSurface debugSwitch;
treeLeaf debugSwitch;
treeNode debugSwitch;
triSurface debugSwitch;
turbulenceModel debugSwitch;
turbulentInlet debugSwitch;
UMIST debugSwitch;
uncorrected debugSwitch;
undoableMeshCutter debugSwitch;
uniform debugSwitch;
uniformFixedValue debugSwitch;
unitInjector debugSwitch;
unix debugSwitch;
Unix debugSwitch;
upwind debugSwitch;
value debugSwitch;
valueStored debugSwitch;
vanDriest debugSwitch;
vanLeer debugSwitch;
vanLeer01 debugSwitch;
vanLeerV debugSwitch;
vector debugSwitch;
vector2DField debugSwitch;
vectorField debugSwitch;
viscosityModel debugSwitch;
volPointInterpolation debugSwitch;
volScalarField debugSwitch;
volScalarField::DimensionedInternalField debugSwitch;
volSphericalTensorField debugSwitch;
volSphericalTensorField::DimensionedInternalField debugSwitch;
volSymmTensorField debugSwitch;
volSymmTensorField::DimensionedInternalField debugSwitch;
volTensorField debugSwitch;
volTensorField::DimensionedInternalField debugSwitch;
volVectorField debugSwitch;
volVectorField::DimensionedInternalField debugSwitch;
walkPatch debugSwitch;
wall debugSwitch;
wallBuoyantPressure debugSwitch;
wallHeatTransfer debugSwitch;
wallLayerCells debugSwitch;
wallModel debugSwitch;
waveTransmissive debugSwitch;
wedge debugSwitch;
weighted debugSwitch;
word debugSwitch;
writer debugSwitch;
xmgr debugSwitch;
zeroGradient debugSwitch;
zoneToCell debugSwitch;
zoneToFace debugSwitch;
zoneToPoint debugSwitch;
}
}
// ************************************************************************* //

View File

@ -0,0 +1,38 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
DimensionedConstants
{
type dictionary;
entries
{
R
{
type scalar;
description "Universal gas constant";
default 8314.51;
}
Pstd
{
type scalar;
description "Standard pressure";
default 1.0e5;
}
Tstd
{
type scalar;
description "Standard temperature";
default 298.15;
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,35 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
InfoSwitches
{
type dictionary;
entries
{
writePrecision
{
type label;
description "Writes to the specified precision";
}
writeJobInfo
{
type label;
description "Write the job information files used by the process editor";
}
FoamXwriteComments
{
type label;
description "Write FoamX descriptions as comments above case dictionary entries";
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,41 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
OptimisationSwitches
{
type dictionary;
entries
{
fileModificationSkew
{
type label;
description "Time delay of automatic re-reading of case files to compensate for time difference between networked machines";
}
scheduledTransfer
{
type label;
description "Use data scheduling during processor-processor transfers rather than asynchronous buffered transfers";
}
floatTransfer
{
type label;
description "Convert doubles into floats for processor-processor field transfer to reduce bandwidth (transfers the mean value as a double and renormalises)";
}
nProcsSimpleSum
{
type label;
description "Number of processors at the global-sum method changes from flat to hierachical";
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,34 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
type dictionary;
description "OpenFOAM control dictionary";
helpURL "controlDict.html";
dictionaryPath "$FOAMX_CONFIG/../..";
entries
{
hosts
{
type list;
elementType word;
}
caseRoots
{
type list;
elementType string;
}
include "DebugSwitches.cfg";
include "InfoSwitches.cfg";
include "OptimisationSwitches.cfg";
include "DimensionedConstants.cfg";
}
// ************************************************************************* //

View File

@ -0,0 +1,21 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
GuldersCoeffs
{
type dictionary;
description "Fuel specific Gulders flame speed model constants";
entries
{
include "GuldersCoeffs/Methane.cfg";
include "GuldersCoeffs/Propane.cfg";
include "GuldersCoeffs/IsoOctane.cfg";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/dimensionedScalar/W.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/eta.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/xi.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/alpha.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/beta.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/f.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
IsoOctane
{
type dictionary;
description "Coefficients for isoOctane";
entries
{
include "GuldersCoeffsEntries.cfg";
}
include "defaults/IsoOctane.def";
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Methane
{
type dictionary;
description "Coefficients for methane";
entries
{
include "GuldersCoeffsEntries.cfg";
}
include "defaults/Methane.def";
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Propane
{
type dictionary;
description "Coefficients for propane";
entries
{
include "GuldersCoeffsEntries.cfg";
}
include "defaults/Propane.def";
}
// ************************************************************************* //

View File

@ -0,0 +1,9 @@
default
{
W W [0 0 0 0 0 0 0] 0.4658;
eta eta [0 0 0 0 0 0 0] -0.326;
xi xi [0 0 0 0 0 0 0] 4.48;
alpha alpha [0 0 0 0 0 0 0] 1.56;
beta beta [0 0 0 0 0 0 0] -0.22;
f f [0 0 0 0 0 0 0] 2.3;
};

View File

@ -0,0 +1,9 @@
default
{
W W [0 0 0 0 0 0 0] 0.422;
eta eta [0 0 0 0 0 0 0] 0.15;
xi xi [0 0 0 0 0 0 0] 5.18;
alpha alpha [0 0 0 0 0 0 0] 2.0;
beta beta [0 0 0 0 0 0 0] -0.5;
f f [0 0 0 0 0 0 0] 2.3;
};

View File

@ -0,0 +1,9 @@
default
{
W W [0 0 0 0 0 0 0] 0.446;
eta eta [0 0 0 0 0 0 0] 0.12;
xi xi [0 0 0 0 0 0 0] 4.95;
alpha alpha [0 0 0 0 0 0 0] 1.77;
beta beta [0 0 0 0 0 0 0] -0.2;
f f [0 0 0 0 0 0 0] 2.3;
};

View File

@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
MKCoeffs
{
type dictionary;
description "MK Fuel specific model constants";
entries
{
include "MKCoeffs/Propane.cfg";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,14 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/dimensionedScalar/Bm.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/B2.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/phim.cfg";
include "$FOAMX_CONFIG/entries/dimensionedScalar/f.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Propane
{
type dictionary;
description "Coefficients for propane";
entries
{
include "MKCoeffsEntries.cfg";
}
include "defaults/Propane.def";
}
// ************************************************************************* //

View File

@ -0,0 +1,7 @@
default
{
Bm Bm [0 0 0 0 0 0 0] 0.3422;
B2 B2 [0 0 0 0 0 0 0] -1.3865;
phim phim [0 0 0 0 0 0 0] 1.08;
f f [0 0 0 0 0 0 0] 2.1;
}

View File

@ -0,0 +1,43 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ignitionSphereFraction
{
type scalar;
description "For 3D the fraction of a sphere the ignition kernel assumes";
iconURL "/FoamX/icons/small/maths/ignitionSphereFraction.gif";
minValue 0;
maxValue 1;
}
ignitionThickness
{
type dimensionedScalar;
description "For 2D the ignition kernel thickness";
iconURL "/FoamX/icons/small/maths/ignitionThickness.gif";
}
ignitionCircleFraction
{
type scalar;
description "For 2D the fraction of a circle the ignition kernel assumes";
iconURL "/FoamX/icons/small/maths/ignitionCircleFraction.gif";
minValue 0;
maxValue 1;
}
ignitionKernelArea
{
type dimensionedScalar;
description "For 1D the ignition kernel area";
iconURL "/FoamX/icons/small/maths/ignitionKernelArea.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
SuModel
{
type model;
description "Strained laminar flame speed model";
default unstrained;
valueList
(
unstrained
equilibrium
transport
);
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
XiModel
{
type model;
description "Flame wrinkling model";
default transport;
valueList
(
fixed
algebraic
transport
);
}
// ************************************************************************* //

View File

@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
type dictionary;
description "Dictionary of combustion properties";
dictionaryPath "constant";
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
fuel
{
type model;
description "fuel";
default Propane;
valueList
(
Methane
Propane
IsoOctane
);
}
// ************************************************************************* //

View File

@ -0,0 +1,43 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ignitionSite
{
type dictionary;
iconURL "/FoamX/icons/small/maths/ignitionSite.gif";
entries
{
include "$FOAMX_CONFIG/entries/vector/location.cfg";
diameter
{
type scalar0Inf;
description "Ignition kernel diameter";
}
start
{
type scalar;
description "Start of ignition";
}
duration
{
type scalar0Inf;
description "Duration of ignition";
}
strength
{
type scalar;
description "Strength of ignition";
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ignitionSites
{
type list;
iconURL "/FoamX/icons/small/maths/ignition.gif";
types
{
include "ignitionSite.cfg";
}
elementType ignitionSite;
}
// ************************************************************************* //

View File

@ -0,0 +1,21 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
laminarFlameSpeedCorrelation
{
type model;
description "Laminar flame speed correlation model";
default Gulders;
valueList
(
const
Gulders
);
}
// ************************************************************************* //

View File

@ -0,0 +1,17 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
adjustTimeStep
{
type Switch;
description "Automatic adjustment of time step?";
helpURL "controlDict.html";
default yes;
}
// ************************************************************************* //

View File

@ -0,0 +1,27 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
controlDict
{
type dictionary;
description "Control dictionary";
helpURL "controlDict.html";
dictionaryPath "system";
entries
{
include "standardEntries.cfg";
}
default
{
include "../../defaults/system/controlDict";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,30 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
controlDict
{
type dictionary;
description "Control dictionary";
helpURL "controlDict.html";
dictionaryPath "system";
entries
{
include "standardEntries.cfg";
include "adjustTimeStep.cfg";
include "maxCo.cfg";
include "maxDeltaT.cfg";
}
default
{
include "../../defaults/system/controlDictAdjustTimeStep";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,27 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
controlDict
{
type dictionary;
description "Control dictionary";
helpURL "controlDict.html";
dictionaryPath "system";
entries
{
include "standardEntries.cfg";
}
default
{
include "../../defaults/system/controlDictSteady";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
maxCo
{
type scalar01;
description "maxCo";
iconURL "/FoamX/icons/small/maths/maxCo.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
maxDeltaT
{
type scalar;
description "maxDeltaT";
iconURL "/FoamX/icons/small/maths/maxDeltaT.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,217 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
application
{
type word;
description "Foam Application";
helpURL "controlDict.html";
iconURL "/FoamX/icons/small/maths/application.gif";
optional 1;
editable 0;
}
startFrom
{
type word;
description "Start point of run";
helpURL "controlDict.html";
iconURL "/FoamX/icons/small/maths/startFrom.gif";
default startTime;
valueList
(
firstTime
startTime
latestTime
);
}
startTime
{
type scalar;
description "Calculation start time";
iconURL "/FoamX/icons/small/maths/startTime.gif";
helpURL "controlDict.html";
default 0.0;
}
stopAt
{
type word;
description "End point of run";
iconURL "/FoamX/icons/small/maths/stopAt.gif";
helpURL "controlDict.html";
default endTime;
valueList
(
endTime
writeNow
noWriteNow
nextWrite
);
}
endTime
{
type scalar;
description "Calculation end time";
iconURL "/FoamX/icons/small/maths/endTime.gif";
helpURL "controlDict.html";
default 0.0;
}
deltaT
{
type scalar0Inf;
description "Calculation time step";
iconURL "/FoamX/icons/small/maths/deltaT.gif";
helpURL "controlDict.html";
default 0.0;
}
writeControl
{
type word;
description "Type of write output control";
iconURL "/FoamX/icons/small/maths/writeControl.gif";
helpURL "controlDict.html";
default timeStep;
valueList
(
timeStep
runTime
adjustableRunTime
cpuTime
clockTime
);
}
writeInterval
{
type scalar0Inf;
description "Interval with which the results are output";
iconURL "/FoamX/icons/small/maths/writeInterval.gif";
helpURL "controlDict.html";
default 1;
}
purgeWrite
{
type label;
description "Keep given number of output time, delete previous";
iconURL "/FoamX/icons/small/maths/purgeWrite.gif";
helpURL "controlDict.html";
minValue 0;
maxValue 99;
default 0;
optional 1;
}
writeFormat
{
type word;
description "Write Format";
iconURL "/FoamX/icons/small/maths/writeFormat.gif";
helpURL "controlDict.html";
default ascii;
valueList
(
ascii
binary
);
}
writePrecision
{
type label;
description "Significant figures of written ASCII data";
iconURL "/FoamX/icons/small/maths/timePrecision.gif";
helpURL "controlDict.html";
optional 1;
minValue 0;
maxValue 99;
default 6;
}
writeCompression
{
type word;
description "Write Compression";
iconURL "/FoamX/icons/small/maths/writeCompression.gif";
helpURL "controlDict.html";
optional 1;
default uncompressed;
valueList
(
uncompressed
compressed
);
}
timeFormat
{
type word;
description "Time directories name format";
iconURL "/FoamX/icons/small/maths/timeFormat.gif";
helpURL "controlDict.html";
default general;
valueList
(
general
fixed
scientific
);
}
timePrecision
{
type label;
description "Decimal precision of time directory names";
iconURL "/FoamX/icons/small/maths/timePrecision.gif";
helpURL "controlDict.html";
minValue 0;
maxValue 99;
default 6;
}
graphFormat
{
type word;
description "Output format for graphs";
helpURL "controlDict.html";
optional 1;
default raw;
valueList
(
raw
gnuplot
xmgr
jplot
);
}
runTimeModifiable
{
type Switch;
description "Can parameters be modified during run time?";
helpURL "controlDict.html";
default yes;
}
functions
{
type list;
optional 1;
types
{
include "$FOAMX_CONFIG/types/functionObjects/probe.cfg";
}
elementType probe;
}
// ************************************************************************* //

View File

@ -0,0 +1,28 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
diffusion
{
type word;
description "Mesh motion diffusion";
helpURL "controlDict.html";
iconURL "/FoamX/icons/small/maths/diffusion.gif";
default linear;
valueList
(
linear
exponential
quadratic
nonOrthogonality
skewness
mixedQuality
patchEnhanced
);
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
distancePatches
{
type list;
description "list of patches from which non-uniform diffusion is calculated";
elementType word;
}
// ************************************************************************* //

View File

@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
dynamicMeshDict
{
type dictionary;
description "Dictionary of motion properties";
dictionaryPath "constant";
entries
{
include "$FOAMX_CONFIG/dictionaries/dynamicMeshDict/staticFvMesh.cfg";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,17 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
frozenDiffusion
{
type SwitchOnOff;
description "Calculates diffusion once at beginning of run";
iconURL "/FoamX/icons/small/maths/Switch.gif";
default off;
}
// ************************************************************************* //

View File

@ -0,0 +1,24 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
movingFvMesh
{
type word;
description "Mesh motion options";
helpURL "controlDict.html";
iconURL "/FoamX/icons/small/maths/movingFvMesh.gif";
default staticFvMesh;
valueList
(
staticFvMesh
movingPinFvMesh
movingInkJetFvMesh
);
}
// ************************************************************************* //

View File

@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
movingInkJetFvMeshCoeffs
{
type dictionary;
description "Coefficients for moving ink jet";
visible 1;
entries
{
}
}
// ************************************************************************* //

View File

@ -0,0 +1,26 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
solver
{
type word;
description "Mesh motion solver";
helpURL "controlDict.html";
//iconURL "/FoamX/icons/small/maths/diffusion.gif";
default laplace;
valueList
(
displacementLaplacian
displacementComponentLaplacian
displacementSBRStress
velocityLaplacian
velocityComponentLaplacian
);
}
// ************************************************************************* //

View File

@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
dynamicFvMesh
{
type word;
description "No mesh motion";
helpURL "controlDict.html";
iconURL "/FoamX/icons/small/maths/movingFvMesh.gif";
editable 0;
default staticFvMesh;
}
// ************************************************************************* //

View File

@ -0,0 +1,21 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
environmentalProperties
{
type dictionary;
description "Environmental properties";
dictionaryPath "constant";
entries
{
include "$FOAMX_CONFIG/entries/dimensionedVector/g.cfg";
}
}
// ************************************************************************* //

View File

@ -0,0 +1,29 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
d2dt2Schemes
{
include "schemes.cfg";
entries
{
default
{
type word;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/ddt.gif";
default Euler;
valueList
(
steadyState
Euler
);
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
type dictionary;
description "Second time derivative discretisation schemes";
helpURL "fvSchemes.html";
// ************************************************************************* //

View File

@ -0,0 +1,31 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ddtSchemes
{
include "schemes.cfg";
entries
{
default
{
type word;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/ddt.gif";
default Euler;
valueList
(
steadyState
Euler
CrankNicholson
backward
);
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
type dictionary;
description "Time derivative discretisation schemes";
helpURL "fvSchemes.html";
// ************************************************************************* //

View File

@ -0,0 +1,29 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ddtSchemes
{
include "schemes.cfg";
entries
{
default
{
type word;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/ddt.gif";
default steadyState;
editable 0;
valueList
(
steadyState
);
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,30 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
ddtSchemes
{
include "schemes.cfg";
entries
{
default
{
type word;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/ddt.gif";
default Euler;
valueList
(
Euler
CrankNicholson
backward
);
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(B)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divB.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(R)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divR.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(Rca)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divStar.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(Rcb)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divStar.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((Su*grad(b)))
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divSuGradb.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(U)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divU.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((U+((Su*Xi)*grad(b))))
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divStar.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,24 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
type compound;
entries
{
include "discretisationScheme.cfg";
interpolationScheme
{
type selection;
entries
{
include "interpolation/centered.cfg";
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,37 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
default
{
type selection;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/div.gif";
entries
{
include "none.cfg";
Gauss
{
type selection;
entries
{
include "interpolation/default.cfg";
outletStabilised
{
type selection;
entries
{
include "interpolation/default.cfg";
}
}
}
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,44 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
divSchemes
{
include "schemes.cfg";
entries
{
default
{
type compound;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/div.gif";
entries
{
include "discretisationScheme.cfg";
interpolationScheme
{
type selection;
entries
{
include "interpolation/default.cfg";
outletStabilised
{
type selection;
entries
{
include "interpolation/default.cfg";
}
}
}
}
}
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
discretisationScheme
{
type word;
default Gauss;
editable 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,54 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/blended.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/downwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2V.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/interfaceCompression.cfg";
include "$FOAMX_CONFIG/entries/interpolations/GammaV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/harmonic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/inverseLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubicV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedGamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLimitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLimitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinearV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedMUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedSuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedVanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linearUpwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Phi.cfg";
include "$FOAMX_CONFIG/entries/interpolations/QUICK.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCD.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCDV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/skewLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/UMIST.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeerV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,17 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/harmonic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/inverseLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,31 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/QUICK.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCD.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/UMIST.cfg";
include "$FOAMX_CONFIG/entries/interpolations/blended.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linearUpwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/skewLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,40 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/QUICK.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCD.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/UMIST.cfg";
include "$FOAMX_CONFIG/entries/interpolations/blended.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/downwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/harmonic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/inverseLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linearUpwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/skewLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedGamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLimitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLimitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedMUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedSuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedVanLeer.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee01.cfg";
include "$FOAMX_CONFIG/entries/interpolations/interfaceCompression.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SuperBee.cfg";
include "$FOAMX_CONFIG/entries/interpolations/interfaceCompression.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,31 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Phi.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/QUICK.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCD.cfg";
include "$FOAMX_CONFIG/entries/interpolations/UMIST.cfg";
include "$FOAMX_CONFIG/entries/interpolations/blended.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linearUpwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/skewLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,37 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
include "$FOAMX_CONFIG/entries/interpolations/unselected.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/upwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedLinearV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeer.cfg";
include "$FOAMX_CONFIG/entries/interpolations/vanLeerV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Gamma.cfg";
include "$FOAMX_CONFIG/entries/interpolations/GammaV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/Phi.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/limitedCubicV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/MUSCL.cfg";
include "$FOAMX_CONFIG/entries/interpolations/QUICK.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCD.cfg";
include "$FOAMX_CONFIG/entries/interpolations/SFCDV.cfg";
include "$FOAMX_CONFIG/entries/interpolations/UMIST.cfg";
include "$FOAMX_CONFIG/entries/interpolations/blended.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubic.cfg";
include "$FOAMX_CONFIG/entries/interpolations/cubicCorrection.cfg";
include "$FOAMX_CONFIG/entries/interpolations/linearUpwind.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2.cfg";
include "$FOAMX_CONFIG/entries/interpolations/filteredLinear2V.cfg";
include "$FOAMX_CONFIG/entries/interpolations/midPoint.cfg";
include "$FOAMX_CONFIG/entries/interpolations/skewLinear.cfg";
include "$FOAMX_CONFIG/entries/interpolations/weighted.cfg";
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((muEff*dev2(grad(U).T())))
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divStar.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
schemeType
{
type word;
default multivariateSelection;
editable 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
none
{
type compound;
description "No default discretisation scheme";
}
// ************************************************************************* //

View File

@ -0,0 +1,25 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
divSchemes
{
include "schemes.cfg";
entries
{
default
{
type word;
description "Default scheme";
iconURL "/FoamX/icons/small/maths/div.gif";
default none;
editable 0;
}
}
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((nuEff*dev(grad(U).T())))
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divStar.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((-nuEffa*grad(Ua).T()))
{
include "tensor.cfg";
iconURL "/FoamX/icons/small/maths/divNuEffaUaT.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div((-nuEffb*grad(Ub).T()))
{
include "tensor.cfg";
iconURL "/FoamX/icons/small/maths/divNuEffbUbT.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,alpha)
{
include "scalar01.cfg";
iconURL "/FoamX/icons/small/maths/divPhiAlpha.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiAlpha,Alpha)
{
include "scalar01.cfg";
iconURL "/FoamX/icons/small/maths/divPhiAlphaAlpha.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,B)
{
include "vector.cfg";
iconURL "/FoamX/icons/small/maths/divPhiB.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiB,((2*DBU)*B))
{
include "vector.cfg";
iconURL "/FoamX/icons/small/maths/divPhiB2DBUB.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,B)
{
include "tensor.cfg";
iconURL "/FoamX/icons/small/maths/divPhiBT.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiB,U)
{
include "vector.cfg";
iconURL "/FoamX/icons/small/maths/divPhiBU.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,epsilon)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiEpsilon.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,gamma)
{
include "scalarMULES.cfg";
iconURL "/FoamX/icons/small/maths/divPhiGamma.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,muTilda)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiMuTilda.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,nuTilda)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiNuTilda.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,R)
{
include "tensor.cfg";
iconURL "/FoamX/icons/small/maths/divPhiR.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiSt,b)
{
include "scalar01.cfg";
iconURL "/FoamX/icons/small/maths/divPhiStb.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,T)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiT.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,U)
{
include "vector.cfg";
iconURL "/FoamX/icons/small/maths/divPhiU.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiU,p)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiUp.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phi,V)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiV.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiVdj,Vdj)
{
include "centered.cfg";
iconURL "/FoamX/icons/small/maths/divPhiVdjVdj.gif";
}
// ************************************************************************* //

View File

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
div(phiXi,Su)
{
include "scalar.cfg";
iconURL "/FoamX/icons/small/maths/divPhiXiSu.gif";
}
// ************************************************************************* //

Some files were not shown because too many files have changed in this diff Show More