summaryrefslogtreecommitdiff
path: root/689/CH3/EX3.7
diff options
context:
space:
mode:
Diffstat (limited to '689/CH3/EX3.7')
-rw-r--r--689/CH3/EX3.7/7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/689/CH3/EX3.7/7.sce b/689/CH3/EX3.7/7.sce
new file mode 100644
index 000000000..0f48b741c
--- /dev/null
+++ b/689/CH3/EX3.7/7.sce
@@ -0,0 +1,14 @@
+clc; funcprot(0);
+//Example 3.7 Similar Flows
+
+// Initialisation of variables
+c = 3/12; //chord length in feet
+V = 100*1.467; // velocity in ft/sec
+R = 0.002378;
+mu = 0.000000373;
+
+// Calculations
+RN = rho*V*c/mu;
+//Results
+disp(RN , "Reynolds no:");
+