Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev

This commit is contained in:
mattijs
2013-09-26 10:56:57 +01:00
5 changed files with 14 additions and 13 deletions

View File

@ -4,6 +4,7 @@ set -x
if [ -d "$CGAL_ARCH_PATH" ] if [ -d "$CGAL_ARCH_PATH" ]
then then
wmake libso ../foamyHexMesh/conformalVoronoiMesh
wmake libso conformalVoronoi2DMesh wmake libso conformalVoronoi2DMesh
wmake wmake
fi fi

View File

@ -226,10 +226,10 @@ case ThirdParty:
breaksw breaksw
case Gcc48: case Gcc48:
case Gcc48++0x: case Gcc48++0x:
set gcc_version=gcc-4.8.0 set gcc_version=gcc-4.8.1
set gmp_version=gmp-5.0.4 set gmp_version=gmp-5.1.2
set mpfr_version=mpfr-3.1.0 set mpfr_version=mpfr-3.1.2
set mpc_version=mpc-0.9 set mpc_version=mpc-1.0.1
breaksw breaksw
case Gcc47: case Gcc47:
case Gcc47++0x: case Gcc47++0x:
@ -397,7 +397,7 @@ case SYSTEMOPENMPI:
breaksw breaksw
case OPENMPI: case OPENMPI:
setenv FOAM_MPI openmpi-1.6.3 setenv FOAM_MPI openmpi-1.6.5
# optional configuration tweaks: # optional configuration tweaks:
_foamSource `$WM_PROJECT_DIR/bin/foamEtcFile config/openmpi.csh` _foamSource `$WM_PROJECT_DIR/bin/foamEtcFile config/openmpi.csh`

View File

@ -247,10 +247,10 @@ OpenFOAM | ThirdParty)
mpc_version=mpc-0.9 mpc_version=mpc-0.9
;; ;;
Gcc48 | Gcc48++0x) Gcc48 | Gcc48++0x)
gcc_version=gcc-4.8.0 gcc_version=gcc-4.8.1
gmp_version=gmp-5.0.4 gmp_version=gmp-5.1.2
mpfr_version=mpfr-3.1.0 mpfr_version=mpfr-3.1.2
mpc_version=mpc-0.9 mpc_version=mpc-1.0.1
;; ;;
Gcc47 | Gcc47++0x) Gcc47 | Gcc47++0x)
gcc_version=gcc-4.7.2 gcc_version=gcc-4.7.2
@ -418,7 +418,7 @@ SYSTEMOPENMPI)
;; ;;
OPENMPI) OPENMPI)
export FOAM_MPI=openmpi-1.6.3 export FOAM_MPI=openmpi-1.6.5
# optional configuration tweaks: # optional configuration tweaks:
_foamSource `$WM_PROJECT_DIR/bin/foamEtcFile config/openmpi.sh` _foamSource `$WM_PROJECT_DIR/bin/foamEtcFile config/openmpi.sh`

View File

@ -5,7 +5,7 @@ set -x
export ParMGridGen=$WM_THIRD_PARTY_DIR/ParMGridGen-1.0 export ParMGridGen=$WM_THIRD_PARTY_DIR/ParMGridGen-1.0
if [ -d "$ParMGridGen/MGridGen/Lib" ] if [ -e "$FOAM_LIBBIN/libMGridGen.so" ]
then then
wmake $makeType MGridGenGamgAgglomeration wmake $makeType MGridGenGamgAgglomeration
fi fi

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -217,7 +217,7 @@ Foam::laminarFlameSpeedModels::Gulders::operator()() const
dimensionedScalar dimensionedScalar
( (
psiuReactionThermo_.lookup("stoichiometricAirFuelMassRatio") psiuReactionThermo_.lookup("stoichiometricAirFuelMassRatio")
)*ft/((1 + SMALL) - ft) )*ft/max(1 - ft, SMALL)
); );
} }
else else