From 4976c6e522139baae203f2b3bebf31fff9723781 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 15 Dec 2015 19:05:08 +0000 Subject: [PATCH] SRFSimpleFoam: Change from pure RAS to any turbulence model Provides support for running laminar. Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1951 --- .../incompressible/simpleFoam/SRFSimpleFoam/createFields.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/createFields.H b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/createFields.H index 5658b68ec6..ea565f0949 100644 --- a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/createFields.H +++ b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/createFields.H @@ -64,7 +64,7 @@ volVectorField U singlePhaseTransportModel laminarTransport(U, phi); -autoPtr turbulence +autoPtr turbulence ( - incompressible::New(U, phi, laminarTransport) + incompressible::turbulenceModel::New(U, phi, laminarTransport) );