summaryrefslogtreecommitdiff
path: root/2087/CH3/EX3.27
diff options
context:
space:
mode:
Diffstat (limited to '2087/CH3/EX3.27')
-rwxr-xr-x2087/CH3/EX3.27/example3_27.sce20
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);