"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"'''calculation of Relative Humidity dew point and moisture content'''",
"",
"#variable declaration",
"D=80.0 # intersection point of DB temperature",
"W=66.5 # intersection point of WB temperature",
"",
"#Result",
"",
"#(a)",
"print('(a)\\nThe intersection point of DB temperature 80\u00b0F and WB temperature 66.5\u00b0F')",
"print(' \\nlines on the relative humidity curve for 50%.\\n RH = 50%')",
"",
"#(b)",
"print('\\n(b)\\nFrom the point of intersection of the dry and wet bulb curves, move left')",
"print(' \\nhorizontally to the dew point temperature curve where it meets at 60\u00b0F')",
"print('\\nDew Point = 60\u00b0F')",
"",
"#(c)",
"print('\\n(c)\\nFrom the point of intersection of the dry and wet bulb curves,')",
"print('\\nhorizontally to the right to the moisture content plot where it meets at 76.')",
"print('\\nMoisture Content : 76 grains of water per pound of dry air.')"
],
"language": "python",
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a)",
"The intersection point of DB temperature 80\u00b0F and WB temperature 66.5\u00b0F",
" ",
"lines on the relative humidity curve for 50%.",
" RH = 50%",
"",
"(b)",
"From the point of intersection of the dry and wet bulb curves, move left",
" ",
"horizontally to the dew point temperature curve where it meets at 60\u00b0F",
"",
"Dew Point = 60\u00b0F",
"",
"(c)",
"From the point of intersection of the dry and wet bulb curves,",
"",
"horizontally to the right to the moisture content plot where it meets at 76.",
"",
"Moisture Content : 76 grains of water per pound of dry air."
]
}
],
"prompt_number": 11
},
{
"cell_type": "markdown",
"source": [
"