diff options
Diffstat (limited to '2021/CH9/EX9.5/Ex9_5.sce')
-rwxr-xr-x | 2021/CH9/EX9.5/Ex9_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH9/EX9.5/Ex9_5.sce b/2021/CH9/EX9.5/Ex9_5.sce new file mode 100755 index 000000000..3e3596865 --- /dev/null +++ b/2021/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,13 @@ +//Finding of Percentage Error in Discharge
+//Given
+Cd=0.6;
+q=40000;
+L=0.5;
+H=0.2;
+g=9.81;
+//To Find
+H1=q/((2/3)*Cd*L*sqrt(2*g));
+H2=H1^(2/3);
+H3=H2/100;
+dq=(3/2)*(H/H3)*100;
+disp("Percentage Error in Discharge ="+string(dq)+" Percentage");
|