diff --git a/README.html b/README.html index 18c3e0747e..280e8adaf6 100644 --- a/README.html +++ b/README.html @@ -1,13 +1,13 @@ - + -OpenFOAM README for version dev +OpenFOAM README for version 2.2.0 + - + @@ -44,6 +44,12 @@ lang="en" xml:lang="en"> dt { font-weight: bold; } div.figure { padding: 0.5em; } div.figure p { text-align: center; } + div.inlinetask { + padding:10px; + border:2px solid gray; + margin:10px; + background: #ffffcc; + } textarea { overflow-x: auto; } .linenr { font-size:smaller } .code-highlighted {background-color:#ffff00;} @@ -79,30 +85,35 @@ lang="en" xml:lang="en"> -
-

OpenFOAM README for version dev

+
+ +
+ +
+

OpenFOAM README for version 2.2.0

+
-

1 About OpenFOAM

+

1 About OpenFOAM

-

OpenFOAM is a free, open source computational fluid dynamics (CFD) software +

OpenFOAM is a free, open source computational fluid dynamcis (CFD) software package released by the OpenFOAM Foundation. It has a large user base across most areas of engineering and science, from both commercial and academic organisations. OpenFOAM has an extensive range of features to solve anything @@ -114,7 +125,7 @@ lang="en" xml:lang="en">

-

2 Copyright

+

2 Copyright

OpenFOAM is free software: you can redistribute it and/or modify it under the @@ -129,7 +140,7 @@ lang="en" xml:lang="en">

-

3 Download and installation instructions

+

3 Download and installation instructions

    @@ -144,17 +155,17 @@ lang="en" xml:lang="en">
-

5 Documentation

+

5 Documentation

http://www.OpenFOAM.com/docs @@ -164,7 +175,7 @@ lang="en" xml:lang="en">

-

6 Support and development contracts

+

6 Support and development contracts

http://www.OpenFOAM.com/support @@ -174,17 +185,19 @@ lang="en" xml:lang="en">

-

7 Reporting Bugs in OpenFOAM

+

7 Reporting Bugs in OpenFOAM

-
-

Date: 15th August 2011

-

Org version 7.5 with Emacs version 23

-Validate XHTML 1.0
+ +
+

Date: 11th January 2013

+

Org version 7.8.11 with Emacs version 24

+Validate XHTML 1.0 +
diff --git a/README.org b/README.org index 84fd18c0cf..bae6792242 100644 --- a/README.org +++ b/README.org @@ -1,14 +1,14 @@ # -*- mode: org; -*- # -#+TITLE: OpenFOAM README for version dev +#+TITLE: OpenFOAM README for version 2.2.0 #+AUTHOR: The OpenFOAM Foundation -#+DATE: 15th August 2011 +#+DATE: 11th January 2013 #+LINK: http://www.openfoam.org #+OPTIONS: author:nil ^:{} -# Copyright (c) 2011 OpenFOAM Foundation. +# Copyright (c) 2013 OpenFOAM Foundation. * About OpenFOAM - OpenFOAM is a free, open source computational fluid dynamics (CFD) software + OpenFOAM is a free, open source computational fluid dynamcis (CFD) software package released by the OpenFOAM Foundation. It has a large user base across most areas of engineering and science, from both commercial and academic organisations. OpenFOAM has an extensive range of features to solve anything @@ -28,7 +28,7 @@ [[http://www.OpenFOAM.org/git.php]] * Release notes - [[http://www.OpenFOAM.com/version2.0.0]] + [[http://www.OpenFOAM.org/version2.2.0]] * Documentation [[http://www.OpenFOAM.com/docs]] diff --git a/applications/solvers/heatTransfer/buoyantSimpleFoam/createFields.H b/applications/solvers/heatTransfer/buoyantSimpleFoam/createFields.H index ffbf005916..7cee2dc4ed 100644 --- a/applications/solvers/heatTransfer/buoyantSimpleFoam/createFields.H +++ b/applications/solvers/heatTransfer/buoyantSimpleFoam/createFields.H @@ -1,9 +1,6 @@ Info<< "Reading thermophysical properties\n" << endl; - autoPtr pThermo - ( - rhoThermo::New(mesh) - ); + autoPtr pThermo(rhoThermo::New(mesh)); rhoThermo& thermo = pThermo(); thermo.validate(args.executable(), "h", "e"); diff --git a/bin/tools/foamConfigurePaths b/bin/tools/foamConfigurePaths index 98d3a832d1..254f5e4380 100755 --- a/bin/tools/foamConfigurePaths +++ b/bin/tools/foamConfigurePaths @@ -36,11 +36,11 @@ usage() { usage: ${0##*/} --foamInstall dir specify installation directory (e.g. /opt) - --projectName name specify project name (e.g. openfoam170) - --projectVersion ver specify project version (e.g. 1.7.x) - --archOption arch specify architecture option (only 32 or 64 applicable) - --paraviewInstall dir specify ParaView_DIR (e.g. /opt/paraviewopenfoam380) - --paraviewVersion ver specify ParaView_VERSION (e.g. 3.14.1) + --projectName name specify project name (e.g. openfoam220) + --projectVersion ver specify project version (e.g. 2.2.0) + --archOption arch specify architecture option (only 32 or 64 applicable) + --paraviewInstall dir specify ParaView_DIR (e.g. /opt/paraviewopenfoam3120) + --paraviewVersion ver specify ParaView_VERSION (e.g. 3.12.0) * hardcode paths to installation @@ -51,26 +51,51 @@ USAGE # Function to do replacement on file. Checks if any replacement has been done. # inlineSed +#_inlineSed() +#{ +# [ -f "$1" ] || { +# echo "Missing file: $1" +# exit 1 +# } +# +# backup="temp.$$" +# cp $1 $backup +# sed -i -e "$2" $1 +# +# if cmp $1 $backup > /dev/null 2>&1 +# then +# echo "Failed: $3 in $1" +# rm $backup 2>/dev/null +# exit 1 +# else +# echo "Okay: $3 in $1" +# rm $backup 2>/dev/null +# fi +# +# return 0 +#} + +# Function to do replacement on file. Checks if any replacement has been done. +# _inlineSed _inlineSed() { - [ -f "$1" ] || { - echo "Missing file: $1" + file="$1" + + [ -f "$file" ] || { + echo "Missing file: $file" exit 1 } - backup="temp.$$" - cp $1 $backup - sed -i -e "$2" $1 + regexp="$2" + replacement="$3" + msg="$4" - if cmp $1 $backup > /dev/null 2>&1 - then - echo "Failed: $3 in $1" - rm $backup 2>/dev/null - exit 1 - else - echo "Okay: $3 in $1" - rm $backup 2>/dev/null - fi + cmd='/^[^#]/s@'"$regexp"'@'"$replacement"'@' + + grep -q "$regexp" "$file" && sed -i -e "$cmd" "$file" || \ + (echo "Failed: $msg in $file" && exit 1) + + echo "Okay: $msg in $file" return 0 } @@ -93,7 +118,8 @@ do # replace foamInstall=... _inlineSed \ etc/bashrc \ - '/^[^#]/s@foamInstall=.*@foamInstall='"$foamInstall@" \ + 'foamInstall=.*' \ + 'foamInstall='"$foamInstall" \ "Replacing foamInstall setting by '$foamInstall'" shift 2 ;; @@ -103,7 +129,8 @@ do # replace WM_PROJECT_DIR=... _inlineSed \ etc/bashrc \ - '/^[^#]/s@WM_PROJECT_DIR=.*@WM_PROJECT_DIR=$WM_PROJECT_INST_DIR/'"$projectName@" \ + 'WM_PROJECT_DIR=.*' \ + 'WM_PROJECT_DIR=$WM_PROJECT_INST_DIR/'"$projectName" \ "Replacing WM_PROJECT_DIR setting by $projectName" shift 2 ;; @@ -111,11 +138,13 @@ do [ "$#" -ge 2 ] || usage "'$1' option requires an argument" projectVersion="$2" # replace WM_PROJECT_VERSION=... - # No checking since might already be set. echo "Replacing WM_PROJECT_VERSION setting by $projectVersion" - sed -i \ - '/^[^#]/s@WM_PROJECT_VERSION=.*@WM_PROJECT_VERSION='"$projectVersion@" \ - etc/bashrc + _inlineSed \ + etc/bashrc \ + 'WM_PROJECT_VERSION=.*' \ + 'WM_PROJECT_VERSION='"$projectVersion" \ + "Replacing WM_PROJECT_VERSION setting by $projectVersion" + shift 2 ;; -archOption | --archOption) @@ -127,8 +156,9 @@ do # replace WM_ARCH_OPTION=... _inlineSed \ etc/bashrc \ - '/^[^#]/s@WM_ARCH_OPTION=.*@WM_ARCH_OPTION='"$archOption@" \ - "Replacing WM_ARCH_OPTION setting by '$archOption'" + 'WM_ARCH_OPTION=.*' \ + 'WM_ARCH_OPTION='"$archOption" \ + "Replacing WM_ARCH_OPTION setting by '$archOption'" else echo "WM_ARCH_OPTION already set to $archOption" fi @@ -140,7 +170,8 @@ do # replace ParaView_DIR=... _inlineSed \ etc/config/paraview.sh \ - '/^[^#]/s@ParaView_DIR=.*@ParaView_DIR='"$paraviewInstall@" \ + 'ParaView_DIR=.*' \ + 'ParaView_DIR='"$paraviewInstall" \ "Replacing ParaView_DIR setting by '$paraviewInstall'" shift 2 ;; @@ -150,8 +181,9 @@ do # replace ParaView_VERSION=... _inlineSed \ etc/config/paraview.sh \ - '/^[^#]/s@ParaView_VERSION=.*@ParaView_VERSION='"$paraviewVersion@" \ - "Replacing ParaView_VERSION setting by '$paraviewVersion'" + 'ParaView_VERSION=.*' \ + 'ParaView_VERSION='"$paraviewVersion" \ + "Replacing ParaView_VERSION setting by '$paraviewVersion'" shift 2 ;; *) @@ -168,13 +200,15 @@ done # Set WM_MPLIB=SYSTEMOPENMPI always _inlineSed \ etc/bashrc \ - '/^[^#]/s@export WM_MPLIB=.*@export WM_MPLIB=SYSTEMOPENMPI@' \ + 'export WM_MPLIB=.*' \ + 'export WM_MPLIB=SYSTEMOPENMPI' \ "Replacing WM_MPLIB setting by 'SYSTEMOPENMPI'" ## set foamCompiler=system always #_inlineSed \ # etc/bashrc \ -# '/^[^#]/s@foamCompiler=.*@foamCompiler=system@' \ +# 'foamCompiler=.*' \ +# 'foamCompiler=system' \ # "Replacing foamCompiler setting by 'system'" #------------------------------------------------------------------------------ diff --git a/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.C b/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.C index 3cd4874317..0c2066f686 100644 --- a/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.C +++ b/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.H b/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.H index 055965d359..dbbf3e4fa1 100644 --- a/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.H +++ b/src/regionModels/pyrolysisModels/noPyrolysis/noPyrolysis.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.C b/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.C index 813b16c4a6..43e2017b02 100644 --- a/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.C +++ b/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.H b/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.H index c663941b44..d323f952f5 100644 --- a/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.H +++ b/src/regionModels/pyrolysisModels/reactingOneDim/reactingOneDim.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/regionModels/surfaceFilmModels/submodels/kinematic/force/surfaceShearForce/surfaceShearForce.C b/src/regionModels/surfaceFilmModels/submodels/kinematic/force/surfaceShearForce/surfaceShearForce.C index a2c910c412..8089d1fba8 100644 --- a/src/regionModels/surfaceFilmModels/submodels/kinematic/force/surfaceShearForce/surfaceShearForce.C +++ b/src/regionModels/surfaceFilmModels/submodels/kinematic/force/surfaceShearForce/surfaceShearForce.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -76,70 +76,11 @@ tmp surfaceShearForce::correct(volVectorField& U) const volScalarField& delta = film.delta(); const volVectorField& Up = film.UPrimary(); - // film surface linear coeff to apply to velocity - tmp tCs; - - typedef compressible::turbulenceModel turbModel; - if (film.primaryMesh().foundObject("turbulenceModel")) - { - // local reference to turbulence model - const turbModel& turb = - film.primaryMesh().lookupObject("turbulenceModel"); - - // calculate and store the stress on the primary region - const volSymmTensorField primaryReff(turb.devRhoReff()); - - // create stress field on film - // - note boundary condition types (mapped) - // - to map, the field name must be the same as the field on the - // primary region - volSymmTensorField Reff - ( - IOobject - ( - primaryReff.name(), - film.regionMesh().time().timeName(), - film.regionMesh(), - IOobject::NO_READ, - IOobject::NO_WRITE - ), - film.regionMesh(), - dimensionedSymmTensor - ( - "zero", - primaryReff.dimensions(), - symmTensor::zero - ), - film.mappedFieldAndInternalPatchTypes() - ); - - // map stress from primary region to film region - Reff.correctBoundaryConditions(); - - dimensionedScalar U0("SMALL", U.dimensions(), SMALL); - volVectorField UHat("UHat", (Up - U)/(mag(Up - U) + U0)); - - // shear stress tangential to the film - volVectorField tauTan - ( - "tauTan", - UHat & (Reff + film.nHat()*(-film.nHat() & Reff)) - ); - - // note: Cf_ 'should' be 1 in this case - tCs = Cf_*mag(tauTan)/(mag(Up - U) + U0); - } - else - { - // laminar case - employ simple coeff-based model - const volScalarField& rhop = film.rhoPrimary(); - tCs = Cf_*rhop*mag(Up - U); - } + // laminar case - employ simple coeff-based model + const volScalarField& rhop = film.rhoPrimary(); + volScalarField Cs("Cs", Cf_*rhop*mag(Up - U)); dimensionedScalar d0("SMALL", delta.dimensions(), SMALL); - - // linear coeffs to apply to velocity - const volScalarField& Cs = tCs(); volScalarField Cw("Cw", mu/(0.3333*(delta + d0))); Cw.min(5000.0); diff --git a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C index ed1e0abf81..015c0118ed 100644 --- a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C +++ b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidChemistryModel/makeSolidChemistryModel.H b/src/thermophysicalModels/solidChemistryModel/makeSolidChemistryModel.H index 747858d9ea..510897f541 100644 --- a/src/thermophysicalModels/solidChemistryModel/makeSolidChemistryModel.H +++ b/src/thermophysicalModels/solidChemistryModel/makeSolidChemistryModel.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidSpecie/reaction/Reactions/solidReaction/solidReaction.C b/src/thermophysicalModels/solidSpecie/reaction/Reactions/solidReaction/solidReaction.C index 474b5cd609..f16d029352 100644 --- a/src/thermophysicalModels/solidSpecie/reaction/Reactions/solidReaction/solidReaction.C +++ b/src/thermophysicalModels/solidSpecie/reaction/Reactions/solidReaction/solidReaction.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidSpecie/transport/const/constAnIsoSolidTransport.H b/src/thermophysicalModels/solidSpecie/transport/const/constAnIsoSolidTransport.H index 718f648143..31af54fe54 100644 --- a/src/thermophysicalModels/solidSpecie/transport/const/constAnIsoSolidTransport.H +++ b/src/thermophysicalModels/solidSpecie/transport/const/constAnIsoSolidTransport.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidSpecie/transport/const/constIsoSolidTransport.H b/src/thermophysicalModels/solidSpecie/transport/const/constIsoSolidTransport.H index fc9cb4438a..d9c47ec444 100644 --- a/src/thermophysicalModels/solidSpecie/transport/const/constIsoSolidTransport.H +++ b/src/thermophysicalModels/solidSpecie/transport/const/constIsoSolidTransport.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidSpecie/transport/exponential/exponentialSolidTransport.H b/src/thermophysicalModels/solidSpecie/transport/exponential/exponentialSolidTransport.H index 3592626d80..1ea9ffdcac 100644 --- a/src/thermophysicalModels/solidSpecie/transport/exponential/exponentialSolidTransport.H +++ b/src/thermophysicalModels/solidSpecie/transport/exponential/exponentialSolidTransport.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidThermo/solidThermo/heSolidThermo.H b/src/thermophysicalModels/solidThermo/solidThermo/heSolidThermo.H index 146656d69e..a964b3fe53 100644 --- a/src/thermophysicalModels/solidThermo/solidThermo/heSolidThermo.H +++ b/src/thermophysicalModels/solidThermo/solidThermo/heSolidThermo.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H index bffb8999eb..e14fba7c82 100644 --- a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H +++ b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs index 4baed11dac..d176101331 100755 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs @@ -3,7 +3,7 @@ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | -# \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation +# \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation # \\/ M anipulation | #------------------------------------------------------------------------------- # License @@ -83,7 +83,7 @@ type -P gnuplot &>/dev/null || { exit 1 } -SETSDIR="../sets" +SETSDIR="../postProcessing/sets" if [ ! -d $SETSDIR ] then @@ -93,7 +93,7 @@ fi # paths to data LATESTTIME=`ls $SETSDIR` -OFDATAROOT=../sets/$LATESTTIME +OFDATAROOT=$SETSDIR/$LATESTTIME EXPTDATAROOT=./exptData diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/therm.dat b/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/therm.dat index b0fcfd816f..acd597870e 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/therm.dat +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/therm.dat @@ -6,7 +6,7 @@ C7H16 P10/85C 7.H 16. 0. 0.G 200.000 6000.000 1000. 1 -2.49753662E-07 9.84877715E-11-2.67688904E+04-1.59096837E+01-2.25846141E+04 4 O2 ATcT06O 2. 0. 0. 0.G 200.000 6000.000 1000. 1 3.45852381E+00 1.04045351E-03-2.79664041E-07 3.11439672E-11-8.55656058E-16 2 - 1.0dev 63E+04 4.15264119E+00 3.78535371E+00-3.21928540E-03 1.12323443E-05 3 + 1.02229063E+04 4.15264119E+00 3.78535371E+00-3.21928540E-03 1.12323443E-05 3 -1.17254068E-08 4.17659585E-12 1.02922572E+04 3.27320239E+00 1.13558105E+04 4 N2 G 8/02N 2. 0. 0. 0.G 200.000 6000.000 1000. 1 2.95257637E+00 1.39690040E-03-4.92631603E-07 7.86010195E-11-4.60755204E-15 2