<?xml version="1.0" encoding="UTF-8"?>
<response>
  <status>success</status>
  <result>
    <project>
      <id>343571</id>
      <name>NIST Refrence Properties Database</name>
      <created_at>2009-05-27T05:53:58Z</created_at>
      <updated_at>2009-06-10T09:11:53Z</updated_at>
      <description>The project is wrapper for the NIST Refrence Properties Database for pure fluids and mixtures thermodynamic properties

currently on Pure Fluid are supported

The database website [url:http://www.nist.gov/srd/nist23.htm]

The aim of the project is to make the fluid or mixture as an object to be processed alone without the necessity to work with only one fluid/mixture per program

sample code

            PureFluid Water = new PureFluid("Water");
            PureFluid Ammonia = new PureFluid("Ammonia");

            Ammonia.CurrentUnitsBasis = UnitsBasis.Mass_Basis;
            Water.CurrentUnitsBasis = UnitsBasis.Mass_Basis;

            for (int P = 100; P &lt;= 600; P += 50)
            {

                Console.WriteLine("{0}              {1}        {2}",
                    P,
                    Water.GetSaturatedTemperature(P) - 273.15,
                    Ammonia.GetSaturatedTemperature(P) - 273.15
                    );
            }

the managed library is making the transition between fluids internally and keeps you focused on what you are doing.

I am planning to add MixedFluid class
also to make some methods as ThermoDynamic Processes 

like  
 
fluid.AdiabaticCompress();
fluid.IsentropicCompress();

etc.

Hope it will be useful for you as it was useful for me :)</description>
      <homepage_url>http://managedrefprop.codeplex.com</homepage_url>
      <download_url></download_url>
      <url_name>ManagedRefProp</url_name>
      <user_count>0</user_count>
      <average_rating></average_rating>
      <rating_count>0</rating_count>
      <analysis_id></analysis_id>
      <licenses>
        <license>
          <name>Microsoft Reciprocal License</name>
          <nice_name>Microsoft Reciprocal License</nice_name>
        </license>
      </licenses>
    </project>
  </result>
</response>
