diff options
Diffstat (limited to '2066/CH9/EX9.6/9_6.sce')
-rwxr-xr-x | 2066/CH9/EX9.6/9_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2066/CH9/EX9.6/9_6.sce b/2066/CH9/EX9.6/9_6.sce new file mode 100755 index 000000000..a0f475ce2 --- /dev/null +++ b/2066/CH9/EX9.6/9_6.sce @@ -0,0 +1,17 @@ +clc
+clear
+//Initialization of variables
+g=32.2 //ft/s^2
+h=60000 //ft
+F=2000 //;b
+d=3 //ft
+rho=0.00231
+//calculations
+V=sqrt(2*g*h)
+disp("By trail and error")
+Cd=0.25
+Nm=0.87
+A=%pi/4 *d^2
+Vt=sqrt(2*F/(Cd*A*rho))
+//results
+printf("terminal velocity = %.1f ft/s",Vt)
|