summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.6/example8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '629/CH8/EX8.6/example8_6.sce')
-rw-r--r--629/CH8/EX8.6/example8_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/629/CH8/EX8.6/example8_6.sce b/629/CH8/EX8.6/example8_6.sce
new file mode 100644
index 000000000..32d9dfb9c
--- /dev/null
+++ b/629/CH8/EX8.6/example8_6.sce
@@ -0,0 +1,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) \ No newline at end of file