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 /2513/CH11/EX11.3 | |
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 '2513/CH11/EX11.3')
-rwxr-xr-x | 2513/CH11/EX11.3/11_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2513/CH11/EX11.3/11_3.sce b/2513/CH11/EX11.3/11_3.sce new file mode 100755 index 000000000..b325a45a3 --- /dev/null +++ b/2513/CH11/EX11.3/11_3.sce @@ -0,0 +1,19 @@ +clc
+//initialisation of variables
+w=40//ft
+k=2*10^-3//cm/sec
+p=3.28*10^-3//cfs
+h=6.47*10^5//gpd
+p1=0.433//ft
+m=9//ft
+delh=w/(18*9)//in
+k1=4.94*10^-4//cm/sec
+//CALCULATIONS
+Q=k*p*w*(9/18)//cfs
+Q1=Q*h//gpd/ft width
+P=(1-8/18)*w*p1//Psig
+H=k1/k//in
+//RESULTS
+printf('the seepage through each foot width of the foundation=% f gpd/ft/ width',Q1)
+printf('the excess hydrostatic pressure on the upstream side of the bottom of the sheet pilling=% f Psig',P)
+printf('the maximum hydraulic gradient and its relations to the coeeficent=% f in',H)
|