home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / maj / 4352 / boil.nlr < prev    next >
Text File  |  1994-01-17  |  616b  |  22 lines

  1. /*
  2.  *  Determine the boiling point of water as a function of the pressure.
  3.  */
  4. Title "Boiling point of water as a function of pressure";
  5. Variable Pressure;        // Pressure in vessel in pounds per square inch
  6. Variable Temp;            // Temperature in degrees Fahrenheit
  7. Parameter a = 1700;
  8. Parameter b = -3200;
  9. Function Temp = b / log(Pressure/a) - 459.7;       // Clapeyron's equation
  10. Plot xlabel="Pressure (PSI)",ylabel="Temperature (degrees F.)";
  11. Confidence 90;            // Print 90% confidence intervals
  12. Data;
  13.  3.8  71.6
  14.  4.4  86.0
  15.  5.8  95.0
  16.  7.1 131.0
  17.  9.0 158.0
  18. 10.7 183.2
  19. 11.9 194.0
  20. 13.1 206.6
  21. 14.5 210.2
  22.