diff options
Diffstat (limited to '1457/CH10/EX10.4')
-rwxr-xr-x | 1457/CH10/EX10.4/10_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1457/CH10/EX10.4/10_4.sce b/1457/CH10/EX10.4/10_4.sce new file mode 100755 index 000000000..7edd22f47 --- /dev/null +++ b/1457/CH10/EX10.4/10_4.sce @@ -0,0 +1,12 @@ +clc
+//Initialization of variables
+Cd=0.45
+rho=0.0725/32.2
+V=88 //fps
+A=8*10
+//calculations
+Fd=Cd*rho*V^2 /2 *A
+Drag2=23
+D=Fd-Drag2
+//results
+printf("Pressure drag = %d lb",D)
|