relocation of turbulence models and renaming namespaces

This commit is contained in:
andy
2008-06-17 10:48:04 +01:00
parent 2251d431fb
commit 24c4b1b745
250 changed files with 1444 additions and 403 deletions

View File

@ -2,9 +2,9 @@ EXE_INC = \
-I$(FOAM_SRC)/postProcessing/postCalc \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/turbulenceModels \
-I$(LIB_SRC)/LESmodels/LESdeltas/lnInclude \
-I$(LIB_SRC)/LESmodels \
-I$(LIB_SRC)/turbulenceModels/RAS \
-I$(LIB_SRC)/turbulenceModels/LES \
-I$(LIB_SRC)/turbulenceModels/LES/LESdeltas/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude
EXE_LIBS = \

View File

@ -148,9 +148,14 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
if (turbulenceProperties.found("turbulenceModel"))
{
autoPtr<turbulenceModel> turbulenceModel
autoPtr<incompressible::turbulenceModel> turbulenceModel
(
turbulenceModel::New(U, phi, laminarTransport)
incompressible::turbulenceModel::New
(
U,
phi,
laminarTransport
)
);
execFlowFunctionObjects(args, runTime);