diff options
Diffstat (limited to '1052/CH19/EX19.3/193.sce')
-rwxr-xr-x | 1052/CH19/EX19.3/193.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1052/CH19/EX19.3/193.sce b/1052/CH19/EX19.3/193.sce new file mode 100755 index 000000000..1ce97930c --- /dev/null +++ b/1052/CH19/EX19.3/193.sce @@ -0,0 +1,12 @@ +clc;
+//Example 19.3
+//page no 251
+printf("Example 19.3 page no 251\n\n");
+//refer to example 19.3
+S=0.785//cross sectional area,ft^2
+v_av=24.4//average velocity,ft/s
+q=v_av*S*60//flow rate,factor 60 for minute
+printf("\n flow rate q=%f ft^3 min",q);
+rho=0.075//density
+m_dot=q*rho*60//mass flow rate
+printf("\n m_dot mass flow rate=%f lb/hr",m_dot);
|