blob: ab903ce5c3123b70daacedf0f98567b239f1e728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//example 2.4
//calculate
//deep percolation loss
//water application efficiency and time of irrigation.
clc;
//Given
B=12;//breadth of basin
L=36//length of basin
d=70//depth of irrigation
Ic=70//cumulative infiltration
kdash=9;
ndash=0.42;
//Part (a)
a=5;
b=0.6;
q=1.5;//stream size
Q=(q*B)/1000;
tl=(L/a)^(1/b);
td=(Ic/kdash)^(1/ndash);
T=tl+td;
p=(1-(td/T)^(ndash))*100;
eita=(1-p/100)*100;
Tdash=(d*L*B)/(10*eita*Q*60);
p=round(p*100)/100;
eita=round(eita*100)/100;
Tdash=round(Tdash*10)/10;
mprintf("Part (a):")
mprintf("\nDeep percolation loss= %f percent.",p);
mprintf("\nWater application efficiency= %f percent.",eita);
mprintf("\nTime of irrigation= %f minutes.",Tdash);
//part (b)
a=8;
b=0.6;
q=3;
Q=(q*B)/1000;
tl=(L/a)^(1/b);
td=(Ic/kdash)^(1/ndash);
T=tl+td;
p=(1-(td/T)^(ndash))*100;
eita=(1-p/100)*100;
Tdash=(d*L*B)/(10*eita*Q*60);
p=round(p*100)/100;
eita=round(eita*100)/100;
Tdash=round(Tdash*10)/10;
mprintf("\nPart (b):")
mprintf("\nDeep percolation loss= %f percent.",p);
mprintf("\nWater application efficiency= %f percent.",eita);
mprintf("\nTime of irrigation= %f minutes.",Tdash);
|