diff options
Diffstat (limited to '3720/CH7/EX7.11/Ex7_11.sce')
-rw-r--r-- | 3720/CH7/EX7.11/Ex7_11.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3720/CH7/EX7.11/Ex7_11.sce b/3720/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..95695bacc --- /dev/null +++ b/3720/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,12 @@ +//Example 7_11
+clc;clear;
+// Given values
+L_r=1/100;// (L_r=L_m/L_p) Length scale factor
+
+//Properties
+// For water at atmospheric pressure and at T = 20°C
+nu_p=1.002*10^-6;// The prototype kinematic viscosity in m^2/s
+
+// Calculation
+nu_m=nu_p*(L_r)^(3/2);
+printf("Required kinematic viscosity of model liquid:nu_m=%0.2e m^2/s\n",nu_m);
|