Chapter 34 :The Atmosphere

Example 34.8 , Page no:213

In [1]:
import math
from __future__ import division
 
#initialisation of variables
m=1; #mass in kg
delt=80; #change in temperature in celcius
c=1; #specific heat in kcal/kg.celcius

#CALCULATIONS
Q=m*c*delt; #calculating heat
t=Q/9.4; #calculating time

#RESULT
print"Heat required in kcal =",round(Q,3);
print"Time required in second =",round(t,3);
Heat required in kcal = 80.0
Time required in second = 8.511