|
[Sponsors] |
Using RAS turbulence modelling in multiphaseEulerFoam (OF 2.1.1) |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
November 26, 2014, 10:45 |
Using RAS turbulence modelling in multiphaseEulerFoam (OF 2.1.1)
|
#1 |
Member
Anurag
Join Date: Aug 2014
Location: Germany
Posts: 57
Rep Power: 12 |
Hello everyone!
From what I've gathered, multiphaseEulerFoam is a LES-based solver. Since I intend to include population balance equations to this solver, I would like to use a less computationally intensive turbulence modelling (RAS). I'm trying to modify the solver so that the turbulence model may be switched from the case directory using turbulenceProperties. I made the following changes: 1. In the file multiphaseEulerFoam.C Code:
#include "LESModel.H" Code:
#include "turbulenceModel.H" Code:
sgsModel->correct(); Code:
turbulence->correct(); Code:
autoPtr<incompressible::LESModel> sgsModel ( incompressible::LESModel::New(U, phi, fluid) ); Code:
autoPtr<incompressible::turbulenceModel> turbulence ( incompressible::turbulenceModel::New(U, phi, fluid) ); Code:
volScalarField nuEff(sgsModel->nut() + iter().nu()); Code:
volScalarField nuEff(turbulence->nut() + iter().nu()); Code:
-I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \ Code:
-lincompressibleTurbulenceModel \ |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Possible turbulence modelling bug in SRF solvers | otm | OpenFOAM Running, Solving & CFD | 3 | May 29, 2012 05:03 |
RAS Turbulence Models - Convective Term | john_w | OpenFOAM | 3 | May 29, 2010 22:31 |
k-ep turbulence modelling | allan thomson | Main CFD Forum | 5 | February 20, 2000 21:39 |
Question about Low Re turbulence modelling. | ghlee | Main CFD Forum | 1 | May 28, 1999 20:29 |
Multigrid Method in Turbulence Modelling | Bipin Lokhande | Main CFD Forum | 1 | November 11, 1998 20:20 |