blob: 2ce92e02697c2163173ca8424c42c557a72c1880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 3.9
//calculate delta for crop
clc;
//Given
B=110; //Base period
D=1400; //Duty of water
delta=8.64*B*100/D;
delta=round(delta);
mprintf("Delta for crop is=%f cm.",delta);
|