summaryrefslogtreecommitdiff
path: root/3651/CH5/EX5.5/5.sce
blob: 744c982ac00bda0e3ca0c4a10801d4dafd43520d (plain)
1
2
3
4
5
6
7
8
9
10
11
//Variable declaration
El=10**-2*50;       //energy loss(J)
H=El*60;      //heat produced(J)
d=7.7*10**3;    //iron rod(kg/m**3)
s=0.462*10**-3;    //specific heat(J/kg K)

//Calculation
theta=H/(d*s);     //temperature rise(K)

//Result
printf('temperature rise is %0.3f K \n',(theta))