summaryrefslogtreecommitdiff
path: root/1466/CH13/EX13.1/13_1.sce
blob: 8a04fec1641ee97c4122d4d3ecd1d77f6a8ce677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

clc
//initialisation of variables
clear
H= -6.8 //B.Th.U
U= 4.8 //B.Th.U
Vs= 6.25 //ft^3/lb
H1= -17 //B.Th.U
U1= -12.1 //B.Th.U
Vs1= 10.6 //ft^3/lb
t= -38 //F
//RESULTS
printf ('H = %.1f B.Th.U',H)
printf (' \n U = %.1f B.Th.U',U)
printf (' \n Vs = %.2f ft^3/Lb',Vs)
printf (' \n H = %.1f B.Th.U',H1)
printf (' \n U = %.1f B.Th.U',U1)
printf (' \n Vs = %.2f ft^3/Lb',Vs1)
printf (' \n t = %.f F',t)