diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH10/EX10.22 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2021/CH10/EX10.22')
-rwxr-xr-x | 2021/CH10/EX10.22/EX10_22.pdf | bin | 0 -> 18159 bytes | |||
-rwxr-xr-x | 2021/CH10/EX10.22/EX10_22.sce | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH10/EX10.22/EX10_22.pdf b/2021/CH10/EX10.22/EX10_22.pdf Binary files differnew file mode 100755 index 000000000..c56fabebf --- /dev/null +++ b/2021/CH10/EX10.22/EX10_22.pdf 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 ")
|