/*

	andeadsp - Numerator calculations for anatomical dead space.

	Weight is entered in pounds and converted to kilograms.  If you use
	kilograms, remove the conversion from pounds to kilograms.  The result
	is given in milliliters.
	
*/

new
"Calculate Anatomical Dead Space\n"
"Body weight(lbs)? "
get weight
weight lb
weight = kg	           /* Remove this line if you enter kilograms. */
"Anatomical dead space is "
2.0 * weight ml
