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

Difference between psiThermo and rhoThermo.

Register Blogs Community New Posts Updated Threads Search

Like Tree32Likes
  • 3 Post By wenxu
  • 1 Post By chriss85
  • 1 Post By fabian_roesler
  • 10 Post By fabian_roesler
  • 1 Post By wenxu
  • 13 Post By fabian_roesler
  • 2 Post By cryabroad
  • 1 Post By superkelle

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 15, 2014, 08:20
Default Difference between psiThermo and rhoThermo.
  #1
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 13
wenxu is on a distinguished road
Hello,everyone,
Greetings OF2.3.1 has been released:http://www.openfoam.org/download/ubuntu.php Enjoy it!
Now i'm confused with this two classes psiThermo and rhoThermo. As far as I know, the difference them the difference to get the density, the first one using psi*p while the latter use the equation of state(many different methods in ../specie/equationOfState). But I want to know where they are be used? That's means in which situation we should use psiThermo and ortherwise we should use rhoThermo. I'm confused with these two class because i think both of them are used in situation where the compressity should be considered.

Thank you in advance!

regards,
wenxu
granzer, acs and anthony761 like this.
wenxu is offline   Reply With Quote

Old   December 16, 2014, 01:49
Default
  #2
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 13
wenxu is on a distinguished road
Still no one help me ? I still have no idea about this please give me some hints if are seeing this post, thank you very much!
wenxu is offline   Reply With Quote

Old   December 16, 2014, 08:27
Default
  #3
Senior Member
 
Join Date: Oct 2013
Posts: 397
Rep Power: 18
chriss85 will become famous soon enough
I think psiThermo is mostly used for compressible fluids, while rhoThermo is made for solids/incompressible fluids? I may be wrong though...
fabian_roesler likes this.
chriss85 is offline   Reply With Quote

Old   December 19, 2014, 02:24
Default
  #4
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 13
wenxu is on a distinguished road
Dear chriss,
Sorry for the late reply, but i do not think so, as you know,rhoReactionThermo is based on rhoThermo, but it is compressible. Thank you for your reply.

regards,
wenxu
wenxu is offline   Reply With Quote

Old   January 7, 2015, 03:02
Default psiThermo rho = p*psi
  #5
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
Hi Folks

Here is what Doxygen says:
Code:
Foam::rhoThermo   Basic thermodynamic properties based on density
Foam::psiThermo   Basic thermodynamic properties based on compressibility
Both calculate the properties rho, psi and mu. psiThermo calculates rho from pressure and compressiblity (rho=p*psi), while rhoThermo directly defines rho.

This is definitely not all the whole story of both thermo models but I might be a starting point.

Cheers

Fabian
erinsam likes this.
fabian_roesler is offline   Reply With Quote

Old   January 7, 2015, 03:23
Default
  #6
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 13
wenxu is on a distinguished road
Thank you, Fabian,
From the source code, i could find that the explicit difference between them are described as you told. But i really want to know the implicit points behind that. Such as what the difference between them when we use them to implement combustion models?

regards,
shawn
wenxu is offline   Reply With Quote

Old   January 7, 2015, 10:05
Default
  #7
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
No guaranty but I'd say that the choice of the model depends on your application. Buoyant solvers, manly changing their density due to temperature changes, use the rhoThermo model. They use a simplified pressure equation where psi is accounted for explicitly:

Code:
   fvc::ddt(rho) + psi*correction(fvm::ddt(p_rgh))
 + fvc::div(phiHbyA)
 - fvm::laplacian(rAUf, p_rgh)
==
   fvOptions(psi, p_rgh, rho.name())
So huge pressure jumps will not be represented correctly. I'd use such a solver for fluids with low compressibility and low pressure differences.
In contrast, some combustion solvers and trans sonic solvers use the psiThermo model. They have another pressure equation where the change in time of pressure is treated implicit by ddt(psi, p):

Code:
   fvm::ddt(psi, p)
 + fvc::div(phiHbyA)
 - fvm::laplacian(rhorAUf, p)
==
   fvOptions(psi, p, rho.name())
Larger pressure jumps are now possible. Such solvers are used when the flow is mainly driven by pressure changes and temperature change is only an effect of large compression and expansion.

So the comment of chriss85 #3 is not entirely wrong. But still no guaranty that all my statements are correct.

Cheers

Fabian
fabian_roesler is offline   Reply With Quote

Old   January 7, 2015, 11:14
Default
  #8
Senior Member
 
Join Date: Oct 2013
Posts: 397
Rep Power: 18
chriss85 will become famous soon enough
Thanks for the clarification. Do you think that the choise of explicit vs. implicit ddt term has anything to do with the choice of the thermo model? Or is the explicit formulation only used here because it is required due to the formulation, as the argument of implicit terms needs to be the variable which is solved with the equation?
chriss85 is offline   Reply With Quote

Old   January 7, 2015, 20:09
Default
  #9
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 13
wenxu is on a distinguished road
Thank you,Fabian and chriss85.

But the true thing is that rhoThermo can also be used in the transonic situation, e.g reactionFoam/pEqn.H:
Quote:
if (pimple.transonic())
.........
fvScalarMatrix pDDtEqn
(
fvc::ddt(rho) + fvc::div(phi)
+ correction(fvm::ddt(psi, p) + fvm::div(phid, p))
);
That means I should choose rhoThermo, if the solver is for a incompressible or little compressible case. And the psiThermo should be used for a fully compressible case. Right?

regards,
wenxu
fabian_roesler likes this.
wenxu is offline   Reply With Quote

Old   January 8, 2015, 03:30
Default
  #10
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
That's what I meant when I said that chriss85 #3 is not entirely wrong. One should use rhoThermo for fluids with low compressibility like water where the density change is mostly due to temperature variation. The psiThermo model should be used for gas.
Thank you both for the nice discussion

Cheers

Fabian

Last edited by fabian_roesler; January 8, 2015 at 05:10.
fabian_roesler is offline   Reply With Quote

Old   December 20, 2018, 09:53
Default
  #11
Senior Member
 
Jianrui Zeng
Join Date: May 2018
Location: China
Posts: 157
Rep Power: 8
calf.Z is on a distinguished road
I am confused about rho = thermo.rho(). What's its function? Update the rho? If there exists rhoEqn.H, does it also update rho? Which is the latest?

Different solvers based on rhoThermo or psiThermo (like buoyantPimpleFoam or rhoSimpleFoam). They all include rho = thermo.rho(). does it have the same effect in both solvers?
calf.Z is offline   Reply With Quote

Old   January 2, 2019, 03:26
Default
  #12
Senior Member
 
Join Date: Oct 2013
Posts: 397
Rep Power: 18
chriss85 will become famous soon enough
thermo.rho() returns a stored rho field that is calculated from pressure and temperature fields according to the selected thermophysical model in thermo.correct().
chriss85 is offline   Reply With Quote

Old   June 4, 2020, 04:20
Default
  #13
Senior Member
 
Ruiyan Chen
Join Date: Jul 2016
Location: Hangzhou, China
Posts: 162
Rep Power: 10
cryabroad is on a distinguished road
I know this is a very old post, but it is about the very thing I want to know, so I'll post my thoughts here and hopefully more experienced people can shed some lights on it.

First, I think the term "compressible" has to be defined carefully here. (I don't have experience on supersonic flows or high Ma flows, so what I have in mind may be wrong) Compressible flows, or "fully" compressible flows, suggest that the density should change with respect to pressure (and temperature, mixture componenets, etc.). However, in many heat transfer and combustion problems, the density mainly changes with temperature and mixture components, but not with pressure. It is still a compressible flow in the sense that the density does vary(and sometimes it varies a lot, one or two orders of magnitude difference), but not so in the sense that the density does NOT vary with pressure changes. To deal with the latter case people have developed the so-called low Mach number formulation to solve the whole system of equations.

With the above being said, I have a feeling that the psiThermo and rhoThermo classes are created mainly to differentiate the "fully" compressible solvers and the low Mach number ones, although I'm not so sure if there are existing solvers that indeed use the low Mach number formulation.

What do you guys think?

Also, in rhoThermo both rho and psi is from the equation of state and p is calculated, doesn't this overconstrain the system? If rho = psi*p, then we only need to know two of the three. Maybe in rhoThermo rho is not psi*p anymore? But then it would mean that the pressure equation should have different forms for different EOSs right?
erinsam and cilliant like this.

Last edited by cryabroad; June 4, 2020 at 04:28. Reason: Adding another question
cryabroad is offline   Reply With Quote

Old   June 19, 2020, 10:05
Default
  #14
Member
 
alexander thierfelder
Join Date: Dec 2019
Posts: 71
Rep Power: 6
superkelle is on a distinguished road
Quote:
Originally Posted by cryabroad View Post
I know this is a very old post, but it is about the very thing I want to know, so I'll post my thoughts here and hopefully more experienced people can shed some lights on it.

First, I think the term "compressible" has to be defined carefully here. (I don't have experience on supersonic flows or high Ma flows, so what I have in mind may be wrong) Compressible flows, or "fully" compressible flows, suggest that the density should change with respect to pressure (and temperature, mixture componenets, etc.). However, in many heat transfer and combustion problems, the density mainly changes with temperature and mixture components, but not with pressure. It is still a compressible flow in the sense that the density does vary(and sometimes it varies a lot, one or two orders of magnitude difference), but not so in the sense that the density does NOT vary with pressure changes. To deal with the latter case people have developed the so-called low Mach number formulation to solve the whole system of equations.

With the above being said, I have a feeling that the psiThermo and rhoThermo classes are created mainly to differentiate the "fully" compressible solvers and the low Mach number ones, although I'm not so sure if there are existing solvers that indeed use the low Mach number formulation.

What do you guys think?

Also, in rhoThermo both rho and psi is from the equation of state and p is calculated, doesn't this overconstrain the system? If rho = psi*p, then we only need to know two of the three. Maybe in rhoThermo rho is not psi*p anymore? But then it would mean that the pressure equation should have different forms for different EOSs right?

Hey I am currently also researching this topic. I think you are right with your first suggestion. I mean we distinguish between compressible flows and incompressible flows when there is a reasonable change in density or not. Never the less gases are always compressible, that has nothing to do with the flow. For example in radiators without fan, like in the room heaters that work with natural convection, the difference in density is mainly a result of the temperature change. On the other hand there are flows with "high" velocity, like air in a wind tunnel where also density changes occur without a big temperature difference. In both cases the air is itself is compressible, it is a material property. Then if you have again an air flow at low speed and without heating, like a slow moving object (maybe walking human? , Im bad in examples ), you have nearly no density changes, but still the gas is compressible. I would suggest following settings:
first example : compressible solver like rhoPimpleFoam, with heRhoThermo
second example : compressible solver like rhoPimpleFoam, with hePsiThermo
third example : incompressible solver like pimpleFoam


If you on the other hand want to simulate a heat exchanger with a liquid as a medium, where you expect a mayor impact on the density due to temperature, I would also use a compressible solver because it solves the energy equation in the NSE and also handles the influence on the viscosity and so on via thermo class. I would again choose:


compressible solver like rhoPimpleFoam, with heRhoThermo




What do you think? That does not cover the real backround why the different thermo types are more accurate/stable/faster/...( or even choosable for solvers) maybe someone has more knowledge about that.
erinsam likes this.
superkelle is offline   Reply With Quote

Old   September 21, 2020, 22:51
Default
  #15
Senior Member
 
Ruiyan Chen
Join Date: Jul 2016
Location: Hangzhou, China
Posts: 162
Rep Power: 10
cryabroad is on a distinguished road
It has been a while since my last post, time has wings!

Starting from OF-5, we can use all thermo types (psiThermo or rhoThermo) in rhoPimpleFoam, but in buoyantPimpleFoam still just rhoThermo is used. I think this shows that for rhoPimpleFoam, which is a general compressible solver, the thermo type doesn't make huge differences. I haven't tested this though, just a quick thought based on the code.

As for rhoThermo, I may find the correct answer. psi is NOT rho/p, but the partial derivative of rho w.r.t. p under constant temperature. However, in psiThermo, rho = psi*p, which is hard-coded. I wonder if this means that rhoPimpleFoam, when used with psiThermo, should only be used for perfect gas, because this is when the the partial derivative of rho w.r.t. p equals 1/RT, and 1/RT*p gives us the density.
cryabroad is offline   Reply With Quote

Old   September 22, 2020, 05:37
Default
  #16
Member
 
alexander thierfelder
Join Date: Dec 2019
Posts: 71
Rep Power: 6
superkelle is on a distinguished road
Quote:
Originally Posted by cryabroad View Post
It has been a while since my last post, time has wings!

Starting from OF-5, we can use all thermo types (psiThermo or rhoThermo) in rhoPimpleFoam, but in buoyantPimpleFoam still just rhoThermo is used. I think this shows that for rhoPimpleFoam, which is a general compressible solver, the thermo type doesn't make huge differences. I haven't tested this though, just a quick thought based on the code.

As for rhoThermo, I may find the correct answer. psi is NOT rho/p, but the partial derivative of rho w.r.t. p under constant temperature. However, in psiThermo, rho = psi*p, which is hard-coded. I wonder if this means that rhoPimpleFoam, when used with psiThermo, should only be used for perfect gas, because this is when the the partial derivative of rho w.r.t. p equals 1/RT, and 1/RT*p gives us the density.
I did some digging into the source code a while ago because I simulated air flow with very high temperature differences. What I remember is following:

psiThermo can especcialy be used when you do expect a difference to ideal gas behaviour. You can use it with pengRobinson for example. Then a compressibility factor Z is calculated in the backgrund by the acentric factor and critical values. Z gives with the specific Gas constant R and the temperature T the compressibility psi.

psi= 1/(Z*R*T)

rho = psi*p

my thermofile looked like this:

Code:
thermoType
{
    type            hePsiThermo;
    mixture         pureMixture;
    transport       polynomial;
    thermo          hPolynomial;
    equationOfState PengRobinsonGas;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
    
     specie//AirValues
    {
        molWeight   28.9;
    }
    thermodynamics
    {
    	Hf              0;
        Sf              0;
        CpCoeffs<8>     ( 1029.48769276813  -0.259754651949017  0.000720524392649807 -4.32731178093884e-7 8.18443559767102e-11 0 0 0); // [J/kg/K]
    }
    
    transport
    {
        muCoeffs<8>     ( 6.33240897464201e-6 4.34314235629553e-8 -7.67992288001185e-12 0 0 0 0 0 );   //- Dynamic viscosity [kg/m/s]
        kappaCoeffs<8>  ( 0.00422477982917543 7.58163166906076e-5 -1.29122249700985e-8 0 0 0 0 0 ); //- Thermal conductivity [W/m/K]
    }
    
    equationOfState
	{
  		Tc  132.5; //- Critical Temperature [K]
  		Vc  8.45251377759746E-2; //- Critical volume [m^3/kmol]
  		Pc  3.7860E6;//- Critical Pressure [Pa] 
  		omega  0.036;//- Acentric factor [-] http://www.coolprop.org/fluid_properties/fluids/Air.html blended from oxygen and nitrogen
	}
    
}
superkelle is offline   Reply With Quote

Old   September 22, 2020, 09:49
Default
  #17
Senior Member
 
Ruiyan Chen
Join Date: Jul 2016
Location: Hangzhou, China
Posts: 162
Rep Power: 10
cryabroad is on a distinguished road
PengRobinsonGas is a speical one, because you can still get density from psi times p. What confuses me is when other EOS is used, e.g., perfectFluid, where rho = rho0+p/(RT), psi is equal to 1/(RT). One can browse all other types, whose source code is at /src/thermophysicalModels/specie/equationOfState. It is clear that psi is indeed the partial derivative of rho w.r.t. p under constant temperature. But from rhoPimpleFoam, psi is rho/p. Any thoughts?
cryabroad is offline   Reply With Quote

Old   September 22, 2020, 11:10
Default
  #18
Member
 
alexander thierfelder
Join Date: Dec 2019
Posts: 71
Rep Power: 6
superkelle is on a distinguished road
Quote:
Originally Posted by cryabroad View Post
PengRobinsonGas is a speical one, because you can still get density from psi times p. What confuses me is when other EOS is used, e.g., perfectFluid, where rho = rho0+p/(RT), psi is equal to 1/(RT). One can browse all other types, whose source code is at /src/thermophysicalModels/specie/equationOfState. It is clear that psi is indeed the partial derivative of rho w.r.t. p under constant temperature. But from rhoPimpleFoam, psi is rho/p. Any thoughts?

ah yes you are indeed right, but OF developers thought of that. Try to use anything other than PR or IG. It is not implemented / allowed.



Those are all implemented variations for use of hePsiThermo:


Code:
type            mixture                    transport   thermo       equationOfState           specie  energy                  


hePsiThermo     homogeneousMixture         const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     homogeneousMixture         sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     homogeneousMixture         sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     multiComponentMixture      const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                const       hConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                polynomial  hPolynomial  PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                polynomial  janaf        PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  hConst       PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  hConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  janaf        PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  janaf        PengRobinsonGas           specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     reactingMixture            const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     reactingMixture            const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     reactingMixture            sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     reactingMixture            sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     singleStepReactingMixture  sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     singleStepReactingMixture  sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     veryInhomogeneousMixture   const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     veryInhomogeneousMixture   sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     veryInhomogeneousMixture   sutherland  janaf        perfectGas                specie  sensibleEnthalpy
superkelle is offline   Reply With Quote

Old   September 22, 2020, 11:14
Default
  #19
Member
 
alexander thierfelder
Join Date: Dec 2019
Posts: 71
Rep Power: 6
superkelle is on a distinguished road
we should do some comparison simulations between rhoThermo and psiThermo to see if there are major differences in the results. Maybe a tutorial case with following different settings:



heRhoThermo pureMixture polynomial hPolynomial PengRobinsonGas specie sensibleEnthalpy

heRhoThermo pureMixture sutherland hConst perfectGas specie sensibleEnthalpy



hePsiThermo pureMixture polynomial hPolynomial PengRobinsonGas specie sensibleEnthalpy

hePsiThermo pureMixture sutherland hConst perfectGas specie sensibleEnthalpy
superkelle is offline   Reply With Quote

Old   September 14, 2021, 10:17
Default
  #20
Member
 
UOCFD
Join Date: Oct 2020
Posts: 40
Rep Power: 5
uosilos is on a distinguished road
Quote:
Originally Posted by superkelle View Post
ah yes you are indeed right, but OF developers thought of that. Try to use anything other than PR or IG. It is not implemented / allowed.



Those are all implemented variations for use of hePsiThermo:


Code:
type            mixture                    transport   thermo       equationOfState           specie  energy                  


hePsiThermo     homogeneousMixture         const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     homogeneousMixture         sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     homogeneousMixture         sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     inhomogeneousMixture       sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     multiComponentMixture      const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     multiComponentMixture      sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                const       hConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                polynomial  hPolynomial  PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                polynomial  janaf        PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  hConst       PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  hConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  janaf        PengRobinsonGas           specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  janaf        PengRobinsonGas           specie  sensibleInternalEnergy  
hePsiThermo     pureMixture                sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     pureMixture                sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     reactingMixture            const       eConst       perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     reactingMixture            const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     reactingMixture            sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     reactingMixture            sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     singleStepReactingMixture  sutherland  janaf        perfectGas                specie  sensibleEnthalpy        
hePsiThermo     singleStepReactingMixture  sutherland  janaf        perfectGas                specie  sensibleInternalEnergy  
hePsiThermo     veryInhomogeneousMixture   const       hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     veryInhomogeneousMixture   sutherland  hConst       perfectGas                specie  sensibleEnthalpy        
hePsiThermo     veryInhomogeneousMixture   sutherland  janaf        perfectGas                specie  sensibleEnthalpy

Nice explanations, thanks. However, why is not PengRobinson compatible with the multicomponentMixture?? EOS coefficients for each specie can be easily found
uosilos 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
using psiThermo instead of rhoThermo skuznet OpenFOAM Pre-Processing 0 January 21, 2014 10:51


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