blob: 1f046003c5abf35ab9449d02aaf1b71e143db956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 2.2
//calculate maximum area that can be irrigated
clc;
//Given
Q=0.0108, //discharge through well
y=0.075, //average depth of flow
I=0.05, //average infiltration rate
A=0.1, //area to cover
Amax=Q/I;
mprintf("Maximum area that can be irrigated =%f hectare.",Amax);
|