summaryrefslogtreecommitdiff
path: root/2021/CH17/EX17.12/EX17_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH17/EX17.12/EX17_12.sce')
-rwxr-xr-x2021/CH17/EX17.12/EX17_12.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2021/CH17/EX17.12/EX17_12.sce b/2021/CH17/EX17.12/EX17_12.sce
new file mode 100755
index 000000000..ebc04a892
--- /dev/null
+++ b/2021/CH17/EX17.12/EX17_12.sce
@@ -0,0 +1,12 @@
+//Finding of Propelling Force, Efficiency
+//Given
+u=35*(5/18);
+V=25;
+a=0.04;
+rho=1000;
+//To Find
+P=rho*a*(V+u)*V;
+E=(2*u)/(V+(2*u));
+E1=E*100;
+disp("Propelling Force ="+string(P)+" Newtons");
+disp("Efficiency ="+string(E1)+" No Units");