summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.6/example8_6.sce
blob: 32d9dfb9c78327e42febc276409241ec3c24c397 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clear
clc
//Example 8.6 APPLICATION OF PRESSURE COEFFICIENT
//p-prototype, m-model
Lmp=1/10; //Lmp=(Lm/Lp)
//Vm*Lm/vm=Vp*Lp/vp, vm=vp
Vpm=Lmp //Vpm=(Vp/Vm)
Pm=17.8; //[kPa]
//Pressure difference
//Pm/(rho_m*Vm^2/2)=Pp/(rho_p*Vp^2/2)
Pp=Pm*10^3*Vpm^2 //[Pa]
printf("\n The pressure difference between two points on the prototype = %.f Pa.\n",Pp)