summaryrefslogtreecommitdiff
path: root/2021/CH9/EX9.5
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH9/EX9.5')
-rwxr-xr-x2021/CH9/EX9.5/EX9_5.pdfbin0 -> 19198 bytes
-rwxr-xr-x2021/CH9/EX9.5/Ex9_5.sce13
2 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH9/EX9.5/EX9_5.pdf b/2021/CH9/EX9.5/EX9_5.pdf
new file mode 100755
index 000000000..07d50302f
--- /dev/null
+++ b/2021/CH9/EX9.5/EX9_5.pdf
Binary files differ
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");