diff options
Diffstat (limited to '1022/CH7/EX7.3/7_3.sce')
-rwxr-xr-x | 1022/CH7/EX7.3/7_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1022/CH7/EX7.3/7_3.sce b/1022/CH7/EX7.3/7_3.sce new file mode 100755 index 000000000..e1ddd5005 --- /dev/null +++ b/1022/CH7/EX7.3/7_3.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+m= 10 //lbf
+T= 120 //F
+T1= 275 //F
+u1= 98.9 //Btu/lbm
+u2= 125.6 //Btu/lbm
+//CALCULATIONS
+Q= m*(u2-u1)
+//RESULTS
+printf ('Heat transferred to the tank= %.f Btu',Q)
|