diff options
Diffstat (limited to '3720/CH6/EX6.3/Ex6_3.sce')
-rw-r--r-- | 3720/CH6/EX6.3/Ex6_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3720/CH6/EX6.3/Ex6_3.sce b/3720/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..a932bfa35 --- /dev/null +++ b/3720/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,15 @@ +//Example 6_3
+clc;clear;
+// Given values
+//From example 6_2
+b=1.03;// The momentum-flux correction factor
+m=14;// Water flow rate in kg/s
+v_1=1.24;// The inlet velocity in m/s
+v_2=20;// The outlet velocity in m/s
+P_1g=202200;// Gage pressure in N/m^2
+A_1=0.0113;// m^2
+
+//Calculation
+F_Rx=(-b*m*(v_2+v_1))-(P_1g*A_1);// N
+printf("The anchoring force needed to hold the elbow in place=%0.0f N\n",F_Rx);
+// The answer vary due to round off error
|