summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.7/example8_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '629/CH8/EX8.7/example8_7.sce')
-rw-r--r--629/CH8/EX8.7/example8_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/629/CH8/EX8.7/example8_7.sce b/629/CH8/EX8.7/example8_7.sce
new file mode 100644
index 000000000..7755fca6f
--- /dev/null
+++ b/629/CH8/EX8.7/example8_7.sce
@@ -0,0 +1,11 @@
+clear
+clc
+//Example 8.7 DRAG FORCE FROM WIND TUNNEL TESTING
+//p-prototype, m-model
+Lmp=1/10; //Lmp=(Lm/Lp)
+//Vm*Lm/vm=Vp*Lp/vp, vm=vp
+Vpm=Lmp //Vpm=(Vp/Vm)
+//Fm/(rho_m*Lm^2*Vm^2/2)=Fp/(rho_p*Lp^2*Vp^2/2)
+Fm=1530; //force[N]
+Fp=Fm*Vpm^2/Lmp^2 //[N]
+printf("\n The expected drag force on the prototype = %.f N.\n",Fp) \ No newline at end of file