summaryrefslogtreecommitdiff
path: root/2024/CH9/EX9.14/9_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '2024/CH9/EX9.14/9_14.sce')
-rwxr-xr-x2024/CH9/EX9.14/9_14.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2024/CH9/EX9.14/9_14.sce b/2024/CH9/EX9.14/9_14.sce
new file mode 100755
index 000000000..71eb7b621
--- /dev/null
+++ b/2024/CH9/EX9.14/9_14.sce
@@ -0,0 +1,12 @@
+clc
+//Initialization of variables
+C=0.98
+m=1
+v=12.55 //ft^3/lbm
+V=1372 //ft/s
+//calculations
+A=m*v/(C*V) *144
+D=sqrt(A*4/%pi)
+//results
+printf("Area = %.3f in^2",A)
+printf("\n diameter = %.2f in",D)