diff options
Diffstat (limited to '409/CH5/EX5.3/Example5_3.sce')
-rwxr-xr-x | 409/CH5/EX5.3/Example5_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/409/CH5/EX5.3/Example5_3.sce b/409/CH5/EX5.3/Example5_3.sce new file mode 100755 index 000000000..cf387647c --- /dev/null +++ b/409/CH5/EX5.3/Example5_3.sce @@ -0,0 +1,12 @@ +clear ;
+clc;
+// Example 5.3
+printf('Example 5.3\n\n');
+//Page no. 111
+// Solution
+
+b_rd = 100.0 ;//[kPa]
+gp = 64.5*101.3/76.0 ;//[kPa]
+p_tnk = b_rd-gp ;//[kPa]
+printf(' Absolute Pressure in tank in is %.1f kPa\n',p_tnk);
+printf(' Since absolute pressure in tank(%.1f kPa) is less than 20 kPa , the mice probably will not survive. \n',p_tnk);
\ No newline at end of file |