|
[Sponsors] |
October 12, 2011, 11:08 |
custom transport properties
|
#1 |
New Member
Peter Maday
Join Date: Aug 2011
Posts: 14
Rep Power: 15 |
Dear forum members,
I am new to OpenFoam, and thus this question might be trivial. I have followed the tutorial slides http://cfd.iut.ac.ir/files/ProgrammingTraining.pdf to solve the advection diffusion equation for a field being carried along by a fluid using the intermediate velocity fields of the simulation. The problem is, that in the tutorial the same value is used as the diffusivity of the transport field as is the kinematic viscosity of the fluid. (nu in transportProperties) What I would like to achieve is to have two distinct parameters, one for the kinematic viscosity (nu) of the fluid, and one for the diffusivity (kappa), so that they can be set independently. Could anyone please tell me how to achieve this? So how can I manage to get a variable available in the main solver code that corrsponds to the diffusivity parameter and is being loaded from one of the dictionary files (for example the transportProperties)? Thanks, Peter |
|
October 28, 2011, 19:12 |
|
#2 |
Member
Ivor Clifford
Join Date: Mar 2009
Location: Switzerland
Posts: 94
Rep Power: 17 |
It's straightforward, add as many variables as you like as follows...
Code:
dimensionedScalar nu(transportPropertiesDict.lookup("nu")); dimensionedScalar kappa(transportPropertiesDict.lookup("kappa")); dimensionedVector gravity(transportPropertiesDict.lookup("g")); etc. |
|
Tags |
property dictionary |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
ReactingFoam Laminar flame simulation transport properties | gbansal | OpenFOAM Running, Solving & CFD | 3 | November 23, 2012 17:03 |
CFX - how to define custom scalr transport equatio | CFD user | CFX | 0 | February 20, 2009 14:09 |
Transport properties with PPDF combustion | Erik | Siemens | 0 | February 18, 2009 06:18 |
Laminar diffusion flames and reactingFoam Transport properties | jgaricano | OpenFOAM Running, Solving & CFD | 0 | June 4, 2008 17:58 |