summaryrefslogtreecommitdiff
path: root/1571/CH3/EX3.16/Chapter3_Example16.sce
blob: ac816744601fbae04796d0011b98b06218947c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc
clear

//INPUT DATA 
//continous flow calorimeter
r=120/60;//rate of flow of water in gm/sec
T1=27.30;//temperature at initial in deg.C
T2=33.75;//temperature at final in deg.C
v=12.64;//potential drop in volts
s=1;//specific heat of water in kj/kg-K
i=4.35;//current through the heating element in amp

//CALCULATIONS
J=(v*i)/(r*s*(T2-T1));//the mechanical equivalent of heat in joule/calorie

//OUTPUT
mprintf('the mechanical equivalent of heat is %3.2f j/cal',J)