summaryrefslogtreecommitdiff
path: root/2417/CH3/EX3.7/Ex3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2417/CH3/EX3.7/Ex3_7.sce')
-rwxr-xr-x2417/CH3/EX3.7/Ex3_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2417/CH3/EX3.7/Ex3_7.sce b/2417/CH3/EX3.7/Ex3_7.sce
new file mode 100755
index 000000000..e007560b0
--- /dev/null
+++ b/2417/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,14 @@
+clear;
+clc;
+printf("\t\t\tProblem Number 3.7\n\n\n");
+// Chapter 3 : The First Law Of Thermodynamics
+// Problem 3.7 (page no. 97)
+// Solution
+
+Rho=62.4 //Unit:lbm/ft^3 //the density of the fluid
+V=100 //Unit:ft/s //Velocity of fluid
+d=1 //Unit:in //Diameter
+//1 ft^2=144 in^2 //A=(%pi/4)*d^2
+A=(%pi*d^2)/(4*144) //Unit:ft^2 //area
+m=Rho*A*V; //Unit:lbm/s //mass rate of flow per unit time
+printf("Mass flow rate is %f lbm/s\n",m);