Lightweight CoolProp C# Wrapper - for easy fluid properties lookups
Lets say you want to know some properties of water; Density of Water at 13°C Boiling point of Co2 at 25bar ..and many more options Then you have come to the right place!
How to start:
- Create a new C# Console App(.NET Framework) project in Visual studio
- Right click your new project and press 'Manage NuGet Packages'
- Go to 'Browse' and search for 'SharpFluids' and press 'Install'
- In your 'Program.cs' add to the top: using SharpFluids;
- In your 'Program.cs' add to the top: using UnitsNet;
- Add in your main:
Fluid Water = new Fluid(FluidList.Water);
Water.UpdatePT(Pressure.FromBars(1.013), Temperature.FromDegreesCelsius(13));
Console.WriteLine("Density of water at 13°C: " + Water.RHO);
Console.ReadLine();