diff options
Diffstat (limited to '2021/CH9/EX9.2/Ex9_2.sce')
-rwxr-xr-x | 2021/CH9/EX9.2/Ex9_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH9/EX9.2/Ex9_2.sce b/2021/CH9/EX9.2/Ex9_2.sce new file mode 100755 index 000000000..fc440b5e2 --- /dev/null +++ b/2021/CH9/EX9.2/Ex9_2.sce @@ -0,0 +1,11 @@ +//Finding of Height
+//Given
+q=1.5;
+Cd=0.6;
+L=5;
+g=9.81;
+//To Find
+H=q/((2/3)*Cd*L*sqrt(2*g));
+H1=H^(2/3);
+Z=q-H1;disp(H1);
+disp("Height ="+string(Z)+" meter");
|