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 /2087/CH5/EX5.13/example5_13.sce | |
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 '2087/CH5/EX5.13/example5_13.sce')
-rwxr-xr-x | 2087/CH5/EX5.13/example5_13.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/2087/CH5/EX5.13/example5_13.sce b/2087/CH5/EX5.13/example5_13.sce new file mode 100755 index 000000000..d2b7ea4ec --- /dev/null +++ b/2087/CH5/EX5.13/example5_13.sce @@ -0,0 +1,30 @@ +
+
+//example 5.13
+//calculate formation constant of acquifer using theis method
+clc;funcprot(0);
+//given
+Q=2500; //discharge(l/min)
+r=60; //distance of observation well from acquifer
+tmin=[1 1.5 2 2.5 3 4 5 6 8 10 12 14 18 24 30 40 50 60 80 100 120 150 180 210 240]; //time in minutes
+s=[0.2 0.26 0.3 0.33 0.36 0.41 0.45 0.48 0.53 0.56 0.59 0.62 0.66 0.71 0.75 0.80 0.83 0.86 0.91 0.95 0.98 1.03 1.05 1.08 1.10]; //drawdown
+u=[1:1:9];
+Wu=[0.2194 0.04891 0.01315 0.003779 0.001148 0.000360 0.000116 0.0000377 0.0000125];
+for i=1:25
+ tday(i)=tmin(i)/(60*24);
+end
+
+for i=1:25
+ rt(i)=r^2/tday(i);
+end
+//graph is plotted between s and r^2/t and W(u) and u and they are superimposed.
+//from which we get
+s1=0.52;
+Wu1=2.96;
+rt1=700000; u1=0.03;
+Q=3600; //discharge in cumec/day
+T=Q*Wu1/(4*%pi*s1);
+S=4*u1*T/rt1;
+T=round(T);
+mprintf("formation constant of acquifer:");
+mprintf("\nT=%f cubic metre/day/m.\nS=%f.",T,S);
|