View Issue Details

IDProjectCategoryView StatusLast Update
0001954OpenFOAMpublic2015-12-16 10:29
Reporteruser1297Assigned Tohenry  
PriorityurgentSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
PlatformGNU/LinuxOSUbuntuOS Version14.04
Summary0001954: buoyant solvers do not work with laminar flow model
DescriptionThe buoyantBoussinesqSimpleFoam, buoyantBoussinesqPimpleFoam, buoyantSimpleFoam, buoyantPimpleFoam solvers work only with RAS model. When "simluationType" is set to laminar, solvers still look for the RAS entry.

Fix is similar as with previous issue with SRFSimpleFoam with same problem, the fix is taken from simpleFoam code...

createFields.H rows 50-53

replace this:

autoPtr<incompressible::RASModel> turbulence
(
    incompressible::New<incompressible::RASModel>(U, phi, laminarTransport)
);

with this:

autoPtr<incompressible::turbulenceModel> turbulence
(
     incompressible::turbulenceModel::New(U, phi, laminarTransport)
);
TagsNo tags attached.

Activities

henry

2015-12-16 08:50

manager   ~0005772

There are others. I have already made the corresponding change where necessary and testing the changes. I will push shortly.

henry

2015-12-16 10:25

manager   ~0005773

Updated in OpenFOAM-dev and OpenFOAM-3.0.x.

Issue History

Date Modified Username Field Change
2015-12-16 08:43 user1297 New Issue
2015-12-16 08:50 henry Note Added: 0005772
2015-12-16 10:25 henry Note Added: 0005773
2015-12-16 10:25 henry Status new => resolved
2015-12-16 10:25 henry Resolution open => fixed
2015-12-16 10:25 henry Assigned To => henry
2016-03-11 11:44 administrator Category 3.0.1 => (No Category)