summaryrefslogtreecommitdiff
path: root/2087/CH3/EX3.24
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2087/CH3/EX3.24
downloadScilab-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/CH3/EX3.24')
-rwxr-xr-x2087/CH3/EX3.24/example3_24.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2087/CH3/EX3.24/example3_24.sce b/2087/CH3/EX3.24/example3_24.sce
new file mode 100755
index 000000000..3fe61892d
--- /dev/null
+++ b/2087/CH3/EX3.24/example3_24.sce
@@ -0,0 +1,23 @@
+
+
+//example 3.24
+//calculate daily consumptive
+//discharge in canal
+clc;
+//given
+Fc=0.26; //Field capacity of soil
+A=3000; //Area of field
+OM=0.12; //optimum moisture
+pwp=0.1; //permanent wilting point
+d=80; //depth of root zone
+RD=1.4; //relative density of soil
+f=10; //frequency of irrigation
+eita=0.23; //overall efficiency
+D=RD*d*(Fc-OM);
+U=D*10/f;
+Wr=A*D*100;
+q=Wr/(f*24*3600);
+q=round(q*100)/100;
+mprintf("daily consumptive=%f mm.",U);
+mprintf("\ndischarge in canal=%f q cumecs.",q);
+