-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CO2 input limitations or inproper table link? #41
Comments
Co2 turns into solid at ~5bar - I believe that's the reason for your result. If you run this code you can see its limits: Console.WriteLine(CO2.LimitPressureMin.ToUnit(PressureUnit.Bar)); //5.18 bar
Console.WriteLine(CO2.LimitTemperatureMin.ToUnit(TemperatureUnit.DegreeCelsius)); //-56.56 °C |
Thank you for your answer! |
CO2 at atmospheric pressure turns into dry ice. I think you'll need to tell me more about what you seek |
I am trying to model thermodynamic states of gasses in a gas turbine, so normal air -> compression -> adding fuel -> combustion -> expansion. Now if i want to use "Air" as provided in CoolProp Lib everything works, however working with exhaust fumes where CO2 concentration is much higher is toublesome because of this limitations. Is there a way to work around this? |
Hi MadsKirkFoged,
I've stumbled across some weird results during my mixtures calculations. Upon further examinations it turns out that CO2 part wasn't updating it's status at all. It happens at low pressures and low temperatures (relatively). I was wondering if this has something to do with input limits or is there some error in CO2 table, because CoolProp Online ans NIST Database seems to have proper results in this range. Below is a simple code I wrote for this test. (Enthalpy passed as an input in last line is proper enthalpy at 1 bar and 273 K according to CoolProp Online).
And here are the results:
I'm not sure what to do with this. Thank you for any help :)
Best Regards
The text was updated successfully, but these errors were encountered: