diff options
Diffstat (limited to '2021/CH17/EX17.1/EX17_1.sce')
-rwxr-xr-x | 2021/CH17/EX17.1/EX17_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2021/CH17/EX17.1/EX17_1.sce b/2021/CH17/EX17.1/EX17_1.sce new file mode 100755 index 000000000..7ddd305ae --- /dev/null +++ b/2021/CH17/EX17.1/EX17_1.sce @@ -0,0 +1,9 @@ +//Finding of Force exerted
+//Given
+rho=1000;
+d=0.04;
+V=25;
+//To Find
+A=(%pi/4)*d^2;
+P=rho*A*V^2;
+disp("Force Exerted ="+string(P)+" Newtons");
|