diff options
Diffstat (limited to '629/CH8/EX8.4/example8_4.sce')
-rw-r--r-- | 629/CH8/EX8.4/example8_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/629/CH8/EX8.4/example8_4.sce b/629/CH8/EX8.4/example8_4.sce new file mode 100644 index 000000000..f8b6306a0 --- /dev/null +++ b/629/CH8/EX8.4/example8_4.sce @@ -0,0 +1,12 @@ +clear
+clc
+//Example 8.4 REYNOLDS-NUMBER SIMILITUDE
+//p-prototype, m-model
+Vp=10; //speed[m/s]
+//Reynolds-number similitude, Rem=Rep
+//Vm*Lm/vm=Vp*Lp/vp
+//vm=vp
+vmp=1; //vmp=vm/vp
+Lmp=1/10; //Lmp=Lm/Lp
+Vm=Vp*vmp/Lmp //speed[m/s]
+printf("\n The air speed in the wind tunnel for scaled model and dynamically similar conditions, V = %.f m/s.\n",Vm)
\ No newline at end of file |