updated to reflect changes in turbulence models

This commit is contained in:
andy
2008-06-20 17:23:59 +01:00
parent 80499b9c9b
commit 1186749707
19 changed files with 35 additions and 40 deletions

View File

@ -5,6 +5,6 @@ EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude
EXE_LIBS = \
-lincompressibleLESmodels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume

View File

@ -16,9 +16,9 @@ volVectorField U
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::LESmodel> sgsModel
autoPtr<incompressible::LESModel> sgsModel
(
incompressible::LESmodel::New(U, phi, laminarTransport)
incompressible::LESModel::New(U, phi, laminarTransport)
);
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H"
#include "incompressible/LESmodel/LESmodel.H"
#include "incompressible/LESModel/LESModel.H"
#include "nearWallDist.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -83,9 +83,9 @@ int main(int argc, char *argv[])
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::LESmodel> sgsModel
autoPtr<incompressible::LESModel> sgsModel
(
incompressible::LESmodel::New(U, phi, laminarTransport)
incompressible::LESModel::New(U, phi, laminarTransport)
);
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();