CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM

how to develope a solver

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 5, 2013, 04:01
Default how to develope a solver
  #1
Member
 
Arjang Behnoud
Join Date: Oct 2012
Posts: 61
Rep Power: 13
AmirBaqa1987 is on a distinguished road
Hi everyone,
i want to develop a solver by adding energy equation
to momentum equation(like adding temperature to icoFoam solver) but the difference is that the variables are coupled in these two equations for instance, viscosity in momentum equation varies with temperature in energy equation.
what should i do?

any help is appreciated.

Arjang
AmirBaqa1987 is offline   Reply With Quote

Old   May 5, 2013, 05:13
Smile new volScalarField nu
  #2
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
Hi

stick to this howTo:
HTML Code:
http://openfoamwiki.net/index.php/How_to_add_temperature_to_icoFoam
1. You can add a new scalarField nu for the kinematic viscosity to the createFields.H like this:


Code:
volScalarField nu (     IOobject     (          "nu",          runTime.timeName(),          mesh,          IOobject::NO_READ,          IOobject::AUTO_WRITE      ),      nu0*(scalar(1)-nuk*(T-T0) );
2. Read the constants of your viscosity function. For example nu0, nuk and T0 for a linear function

Code:
nu = nu0*(scalar(1)-nuk*(T-T0));


Code:
dimensionedScalar nu0 (      transportProperties.lookup("nu0") );
dimensionedScalar nuk (      transportProperties.lookup("nuk") );
...


3. Update your viscosity function after you solved for temperature in the TEqn.H

Code:
nu = nu0*(scalar(1)-nuk*(T-T0));


This should be all.

Regards

Fabian
fabian_roesler is offline   Reply With Quote

Old   May 6, 2013, 02:57
Default appreciation
  #3
Member
 
Arjang Behnoud
Join Date: Oct 2012
Posts: 61
Rep Power: 13
AmirBaqa1987 is on a distinguished road
Hallo Fabian

Vielen Dank.
AmirBaqa1987 is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
thobois class engineTopoChangerMesh error Peter_600 OpenFOAM 4 August 2, 2014 09:52
3d vof Smaras FLUENT 2 February 19, 2013 06:58
Interfoam blows on parallel run danvica OpenFOAM Running, Solving & CFD 16 December 22, 2012 02:09
why the solver reject it? Anyone with experience? bearcat CFX 6 April 28, 2008 14:08
How to develope my own solver ztdep OpenFOAM Running, Solving & CFD 0 September 15, 2005 10:41


All times are GMT -4. The time now is 00:56.