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/CH3/EX3.27 | |
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/CH3/EX3.27')
-rwxr-xr-x | 2087/CH3/EX3.27/example3_27.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2087/CH3/EX3.27/example3_27.sce b/2087/CH3/EX3.27/example3_27.sce new file mode 100755 index 000000000..657503eac --- /dev/null +++ b/2087/CH3/EX3.27/example3_27.sce @@ -0,0 +1,20 @@ +
+
+//example 3.27
+//calculate Duty of water
+//discharge required in water course
+clc;
+//given
+A=1000; //total area
+AI=0.7*A; //area under irrigation
+B=15; //Base period
+d=500; //depth of water required during transplantation
+R=120; //useful rain falling
+Wl=0.2; //water loss
+delta=d-R;
+Du=8.64*B*1000/delta;
+DuH=Du*(1-Wl);
+q=AI/DuH;
+q=round(q*100)/100;
+mprintf("Duty of water=%i hec/cumec.",Du);
+mprintf("\ndischarge required in water course=%f cumecs.",q);
|