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/CH2/EX2.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/CH2/EX2.3')
-rwxr-xr-x | 2513/CH2/EX2.3/2_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2513/CH2/EX2.3/2_3.sce b/2513/CH2/EX2.3/2_3.sce new file mode 100755 index 000000000..df9a2e544 --- /dev/null +++ b/2513/CH2/EX2.3/2_3.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+w=20//ft
+r=3//ft a day
+g=500//ft
+g1=1000//ft
+h=7.5/1440//ft
+p=7.5/1000000//ft
+r1=2//ft a day
+//CALCULATIONS
+W1=w*g1*r*h//gpm
+W2=w*g1*r1*r*p//mgd
+//RESULTS
+printf('the ground water laterally =% f gpm',W1)
+printf('the water from both sides=% f mgd',W2)
|