MadsFoged

Results 11 comments of MadsFoged

Hi Warolucky24, Is it something like this you are looking for: ``` Fluid r134a = new Fluid(FluidList.R134a); r134a.UpdatePT(Pressure.FromBars(2), Temperature.FromDegreesCelsius(13)); string densité = r134a.Density.MilligramsPerCubicMeter.ToString(); ```

If you describe what kind of calculation you are looking for, I can help you better.

Hi AndreaVIC, R513A is not yet in SharpFluids's official List however it is in CoolProp's list, thats why it kinda works for you. For some reason coolprop cant return R513A's...

Coolprop gives me this error when I try: phase envelope must be built to carry out HSU_P_flash for mixture It looks like it is a CoolProp problem: https://github.com/CoolProp/CoolProp/issues/2000 **ibell commented...

However if you want you could build a binary search to search for the entropy you need. If you use `my_fluid.UpdatePT(Pressure.FromBars(10), Temperature.FromDegreesCelsius(x));` You can read out the entropy and guess...

It could be as simple as this: ``` MediaType MediaFluid = new MediaType("HEOS", "R513A.MIX"); Fluid my_fluid = new Fluid(MediaFluid); //This is want we are aiming for Entropy Aim = Entropy.FromJoulesPerKelvin(1699.7);...

With the neweste verion you can get the fluid using: `Fluid my_fluid = new Fluid(FluidList.R513A_mix);`

Hi lodihendriks, Have you tried to make other things work in this package? The code you are showing doesnt look like C# code which this package is written in

If you look in "SharpFluids.FluidList." you get a list of all the fluids I have put into this wrapper. I can find R407C but not R407F. If you look at...

Hi Monugeni, There are some predefined fluids mixtures ex. ``` //mix of Ammonia and water Fluid ref = new Fluid(FluidList.MixAmmoniaAQ); ``` But right now you cant just mix fluids. If...