summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.5/example8_5.sce
blob: 8b3ce150b66a58686eedd81993527c9d827bf5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clear
clc
//Example 8.5 REYNOLDS-NUMBER SIMILITUDE OF A VALVE
//p-prototype, m-model
Lmp=1/6; //Lmp=(Lm/Lp)
//Vm*Lm/vm=Vp*Lp/vp, vm=vp
Vmp=1/Lmp //Vmp=(Vm/Vp)
Qp=700; //[cfs]
Amp=(Lmp)^2 //Ratio of areas, Amp=(Am/Ap)
//Discharge
Qm=Qp*Vmp*Amp  //[cfs]
printf("\n The flow rate required for the model, Q = %.f cfs.\n",Qm)