diff options
Diffstat (limited to '2021/CH8/EX8.2/Ex8_2.sce')
-rwxr-xr-x | 2021/CH8/EX8.2/Ex8_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2021/CH8/EX8.2/Ex8_2.sce b/2021/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..dc4f2912a --- /dev/null +++ b/2021/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,12 @@ +//Finding of Coefficient of Discharge
+//Given
+d=0.03;
+H=1.5;
+Ad=2.35*10^-3;
+g=9.81;
+//To Find
+a=(%pi/4)*d^2;
+b=sqrt(2*g*H);
+Td=b*a;
+Cd=Ad/Td;
+disp(" Coefficient of Discharge ="+string(Cd)+" No units");
|