consistency updates

This commit is contained in:
andy
2008-06-20 13:51:29 +01:00
committed by graham
parent 71916c4416
commit 9658ca230c
14 changed files with 23 additions and 23 deletions

View File

@ -15,8 +15,8 @@ EXE_INC = \
LIB_LIBS = \ LIB_LIBS = \
-llagrangian \ -llagrangian \
-lfiniteVolume \ -lfiniteVolume \
-lcompressibleRASmodels \ -lcompressibleRASModels \
-lcompressibleLESmodels \ -lcompressibleLESModels \
-lLESdeltas \ -lLESdeltas \
-lliquids \ -lliquids \
-lliquidMixture \ -lliquidMixture \

View File

@ -47,9 +47,9 @@ dispersionLESModel::dispersionLESModel
dispersionModel(dict, sm), dispersionModel(dict, sm),
turbulence_ turbulence_
( (
sm.mesh().lookupObject<compressible::LESmodel> sm.mesh().lookupObject<compressible::LESModel>
( (
"turbulenceProperties" "LESProperties"
) )
) )
{} {}

View File

@ -34,7 +34,7 @@ Description
#define dispersionLESModel_H #define dispersionLESModel_H
#include "dispersionModel.H" #include "dispersionModel.H"
#include "LESmodel.H" #include "LESModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -51,7 +51,7 @@ class dispersionLESModel
{ {
// Private data // Private data
const compressible::LESmodel& turbulence_; const compressible::LESModel& turbulence_;
public: public:
@ -77,7 +77,7 @@ public:
// Member Functions // Member Functions
const compressible::LESmodel& turbulence() const const compressible::LESModel& turbulence() const
{ {
return turbulence_; return turbulence_;
} }

View File

@ -47,9 +47,9 @@ dispersionRASModel::dispersionRASModel
dispersionModel(dict, sm), dispersionModel(dict, sm),
turbulence_ turbulence_
( (
sm.mesh().lookupObject<compressible::RASmodel> sm.mesh().lookupObject<compressible::RASModel>
( (
"turbulenceProperties" "RASProperties"
) )
) )
{} {}

View File

@ -34,7 +34,7 @@ Description
#define dispersionRASModel_H #define dispersionRASModel_H
#include "dispersionModel.H" #include "dispersionModel.H"
#include "RASmodel.H" #include "RASModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -52,7 +52,7 @@ class dispersionRASModel
{ {
// Private data // Private data
const compressible::RASmodel& turbulence_; const compressible::RASModel& turbulence_;
public: public:
@ -78,7 +78,7 @@ public:
// Member Functions // Member Functions
const compressible::RASmodel& turbulence() const const compressible::RASModel& turbulence() const
{ {
return turbulence_; return turbulence_;
} }

View File

@ -23,4 +23,4 @@ LIB_LIBS = \
-lspecie \ -lspecie \
-lbasicThermophysicalModels \ -lbasicThermophysicalModels \
-lcombustionThermophysicalModels \ -lcombustionThermophysicalModels \
-lcompressibleRASmodels -lcompressibleRASModels

View File

@ -40,9 +40,9 @@ Foam::DispersionRASModel<CloudType>::DispersionRASModel
DispersionModel<CloudType>(dict, owner), DispersionModel<CloudType>(dict, owner),
turbulence_ turbulence_
( (
owner.mesh().objectRegistry::lookupObject<compressible::RASmodel> owner.mesh().objectRegistry::lookupObject<compressible::RASModel>
( (
"turbulenceProperties" "RASProperties"
) )
) )
{} {}

View File

@ -33,7 +33,7 @@ Description
#define DispersionRASModel_H #define DispersionRASModel_H
#include "DispersionModel.H" #include "DispersionModel.H"
#include "RASmodel.H" #include "RASModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -54,7 +54,7 @@ class DispersionRASModel
// Private data // Private data
//- Reference to the compressible turbulence model //- Reference to the compressible turbulence model
const compressible::RASmodel& turbulence_; const compressible::RASModel& turbulence_;
public: public:
@ -81,7 +81,7 @@ public:
// Member Functions // Member Functions
//- Return const access to the turbulence model //- Return const access to the turbulence model
const compressible::RASmodel& turbulence() const const compressible::RASModel& turbulence() const
{ {
return turbulence_; return turbulence_;
} }

View File

@ -4,6 +4,6 @@ EXE_INC = \
-I$(LIB_SRC)/transportModels -I$(LIB_SRC)/transportModels
EXE_LIBS = \ EXE_LIBS = \
-lincompressibleRASmodels \ -lincompressibleRASModels \
-lincompressibleTransportModels \ -lincompressibleTransportModels \
-lfiniteVolume -lfiniteVolume

0
tutorials/MRFSimpleFoam/mixerVessel2D/Allrun Normal file → Executable file
View File

View File

@ -22,7 +22,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
RASmodel kEpsilon; RASModel kEpsilon;
turbulence on; turbulence on;

View File

@ -18,4 +18,4 @@ EXE_LIBS = \
-lcombustionThermophysicalModels \ -lcombustionThermophysicalModels \
-lspecie \ -lspecie \
-lradiation \ -lradiation \
-lcompressibleRASmodels -lcompressibleRASModels

View File

@ -4,7 +4,7 @@ EXE_INC = \
-I$(LIB_SRC)/transportModels -I$(LIB_SRC)/transportModels
EXE_LIBS = \ EXE_LIBS = \
-lincompressibleRASmodels \ -lincompressibleRASModels \
-lincompressibleTransportModels \ -lincompressibleTransportModels \
-lfiniteVolume \ -lfiniteVolume \
-lmeshTools -lmeshTools

View File

@ -22,7 +22,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
RASmodel kEpsilon; RASModel kEpsilon;
turbulence on; turbulence on;