summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.4/example8_4.sce
blob: f8b6306a043d0fbf9ef0c5c3eda254790a434bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)