summaryrefslogtreecommitdiff
path: root/2021/CH16/EX16.5/EX16_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH16/EX16.5/EX16_5.sce')
-rwxr-xr-x2021/CH16/EX16.5/EX16_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH16/EX16.5/EX16_5.sce b/2021/CH16/EX16.5/EX16_5.sce
new file mode 100755
index 000000000..40101c8c4
--- /dev/null
+++ b/2021/CH16/EX16.5/EX16_5.sce
@@ -0,0 +1,11 @@
+//Finding of Weight
+//Given
+D=0.05;
+v=1.5*10^-4;
+V=10;
+rho=1.25;
+Cd=0.5;
+//TO Find
+A=(%pi/4)*D^2;
+Fd=Cd*rho*A*((V^2)/2);
+disp("Weight of the ball ="+string(Fd)+" Newtons");