summaryrefslogtreecommitdiff
path: root/1466/CH13/EX13.1/13_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1466/CH13/EX13.1/13_1.sce')
-rwxr-xr-x1466/CH13/EX13.1/13_1.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1466/CH13/EX13.1/13_1.sce b/1466/CH13/EX13.1/13_1.sce
new file mode 100755
index 000000000..8a04fec16
--- /dev/null
+++ b/1466/CH13/EX13.1/13_1.sce
@@ -0,0 +1,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)