consistency update

This commit is contained in:
andy
2008-06-17 17:28:12 +01:00
parent c7a59bb25f
commit f4b2b04f58
103 changed files with 191 additions and 191 deletions

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H"
#include "incompressible/turbulenceModel/turbulenceModel.H"
#include "incompressible/RASmodel/RASmodel.H"
#include "wallFvPatch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -83,9 +83,9 @@ int main(int argc, char *argv[])
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::turbulenceModel> turbulence
autoPtr<incompressible::RASmodel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
incompressible::RASmodel::New(U, phi, laminarTransport)
);
const fvPatchList& patches = mesh.boundary();