summaryrefslogtreecommitdiff
path: root/2021/CH10/EX10.22/EX10_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH10/EX10.22/EX10_22.sce')
-rwxr-xr-x2021/CH10/EX10.22/EX10_22.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH10/EX10.22/EX10_22.sce b/2021/CH10/EX10.22/EX10_22.sce
new file mode 100755
index 000000000..d559fd459
--- /dev/null
+++ b/2021/CH10/EX10.22/EX10_22.sce
@@ -0,0 +1,14 @@
+//Finding of Water surface Slope
+//Given
+sb=1/4000;
+sf=.00004;
+T=10;
+B=10;
+g=9.81;
+y=1.5;
+v=1;
+//To Find
+A=B*y;
+q=A*v;
+z=(sb-sf)/(1-((q^2*T)/(g*A^3)));
+disp("Water surface slope ="+string(z)+"no units ")