|
[Sponsors] |
August 21, 2013, 09:20 |
How to add a new Equation of State
|
#1 |
Senior Member
Roman Thiele
Join Date: Aug 2009
Location: Eindhoven, NL
Posts: 374
Rep Power: 21 |
Hej,
I have been trying to find out how to add a new equation of state in such a way that OF 2.2.x can understand that it is part of the rhoThermo selection package. Like this Code:
thermoType { type heRhoThermo; mixture pureMixture; transport const; thermo hConst; equationOfState icoIAPWS; specie specie; energy sensibleEnthalpy; } Code:
libs ( "icoIAPWS.so" ); I think it should be somehow related to typeDef such as in the case of http://www.cfd-online.com/Forums/ope...epository.html or http://www.cfd-online.com/Forums/ope...-openfoam.html However, I haven't really gotten behind this whole typedef and getting it onto the runtimeselection table. A first attempt is attached to this post.
__________________
~roman |
|
August 22, 2013, 04:21 |
|
#2 |
Senior Member
Christian Lucas
Join Date: Aug 2009
Location: Braunschweig, Germany
Posts: 202
Rep Power: 18 |
Hi,
have you defined your new makeThermo in "rhoThermos.C"? Christian |
|
August 22, 2013, 05:07 |
|
#3 |
Senior Member
Roman Thiele
Join Date: Aug 2009
Location: Eindhoven, NL
Posts: 374
Rep Power: 21 |
I have looked at it and I am wondering if there is a way to not have to recompile the full thermophysicalModels library/folder. Such as to include the makeThermo(...,...,...,) somehow into one of the source files of new equation of state which is supposed to be used.
__________________
~roman |
|
August 22, 2013, 05:26 |
|
#4 |
Senior Member
Christian Lucas
Join Date: Aug 2009
Location: Braunschweig, Germany
Posts: 202
Rep Power: 18 |
Hi,
I don't think that this will work. Your could copy the heRhoThermo and all related files, rename them and uses this new thermo model if you don't want to change the OF core files. Christian |
|
September 15, 2013, 22:08 |
|
#5 |
Member
赵庆良
Join Date: Aug 2013
Posts: 56
Rep Power: 13 |
Dear Chris Lucas and Romant:
I want use the thermo type as the following: thermoType { type hePsiThermo; mixture reactingMixture; transport sutherland; thermo janaf; energy absoluteEnthalpy; equationOfState perfectGas; specie specie; } but class hePsiThermo only have "sensibleEnthalpy" insteadingof "absoluteEnthalpy".In 2.2.1,only when I use heheuPsiThermo,can I use "absoluteEnthalpy".So I have to according to class heheuPsiThermo to add "absoluteEnthalpy" in class hePsiThermo .However,when I run my case,the error showed me that there no change with "Valid psiThermo types ".In other word ,my modifies did not work.the file I modified is "thermophysicalModels/reactionThermo/psiReactionThermos.C"I just add the following code: makeReactionThermo ( PsiThermo, PsiReactionThermo, hePsiThermo, reactingMixture, sutherland, absoluteEnthalpy, janafThermo, perfectGas, specie; ) and #include "absoluteEntalpy.H" to psiReactionThermos.C.As you know ,it did not work.could you tell me how to modify psiReactionThermos.C to make my difined thermo type : { type hePsiThermo; mixture reactingMixture; transport sutherland; thermo janaf; energy absoluteEnthalpy; equationOfState perfectGas; specie specie; }to be useful? Or can I build myThermo library that include thermotype what I want to use?Please someone could give some advise! Please!here is my new thermotype librarymyThermo.zip |
|
September 16, 2013, 04:45 |
|
#6 | |
Senior Member
Armin
Join Date: Feb 2011
Location: Helsinki, Finland
Posts: 156
Rep Power: 19 |
Quote:
Roman, you are on the right track with the makeThermo(...). I attached a zip archive that adds the missing pieces. What I essentially did is: 1. copy icoPolynomial and rename it to icoIAPWS 2. Create icoIAPWSThermos.C, this is where the magic happens. you just compile this file and all the other stuff will be put to the right places by the OpenFOAM macros. (See also the Make folder). To get it running: 1. wmake libso 2. Include this in your controlDict Code:
libs ( "libicoIAPWSThermo.so" ); I already posted a similar thing in this thread: http://www.cfd-online.com/Forums/ope...tml#post451645 |
||
October 4, 2013, 06:02 |
|
#7 |
Senior Member
Roman Thiele
Join Date: Aug 2009
Location: Eindhoven, NL
Posts: 374
Rep Power: 21 |
Thank you Armin, this worked.
__________________
~roman |
|
May 7, 2019, 06:59 |
|
#8 |
Senior Member
A. Min
Join Date: Mar 2015
Posts: 308
Rep Power: 12 |
Hi foamers
I have added a new simple equation of state to foam 4.0, but when I select it in a case, it can't find it! What's the problem? Thanks |
|
October 14, 2020, 07:14 |
|
#9 |
New Member
Join Date: Aug 2019
Posts: 19
Rep Power: 7 |
I'm trying to use the linear equation of State, and so far with no success, any tips?
Thanks in advance |
|
February 22, 2022, 08:30 |
|
#10 |
New Member
Pengcheng Zhang
Join Date: Aug 2021
Posts: 14
Rep Power: 5 |
Hi, everyone!
First, many thanks to Armin. With your help, I have implemented a new linear equation of state successfully. It is worth mentioning that maybe because of the different OpenFOAM version, I failed at first. I use foam-extend-4.1. Hence I modified the code that Armin provided, and finally succeeded. Here is the code I use. Hope that helps. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
InterFoam: Add an equation to only one phase | voingiappone | OpenFOAM Programming & Development | 41 | June 7, 2022 10:04 |
how to add source-term in momentum equation for interFoam? | anon_g | OpenFOAM | 9 | October 18, 2011 13:47 |
Real gas equation of state for gas mixture | ahourri | FLUENT | 0 | April 30, 2008 12:23 |
Equation of state for water? | jinwon park | Main CFD Forum | 2 | December 20, 2007 08:32 |
equation of state imbalance(engine simulation) | hennie | Siemens | 1 | July 4, 2002 04:21 |