diff options
Diffstat (limited to '1100/CH5/EX5.2/5_2.sce')
-rwxr-xr-x | 1100/CH5/EX5.2/5_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1100/CH5/EX5.2/5_2.sce b/1100/CH5/EX5.2/5_2.sce new file mode 100755 index 000000000..f7eff7a79 --- /dev/null +++ b/1100/CH5/EX5.2/5_2.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+m= 2 //lb
+T2= 35 //F
+cv= 1.2 //Btu/lb F
+Q= 34 //Btu
+//CALCULATIONS
+U= m*cv*T2
+W= Q-U
+//RESULTS
+printf ('Change in internal enenrgy = %.f Btu',W)
|