From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2087/CH2/EX2.7/example2_7.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2087/CH2/EX2.7/example2_7.sce (limited to '2087/CH2/EX2.7') diff --git a/2087/CH2/EX2.7/example2_7.sce b/2087/CH2/EX2.7/example2_7.sce new file mode 100755 index 000000000..5d4169136 --- /dev/null +++ b/2087/CH2/EX2.7/example2_7.sce @@ -0,0 +1,17 @@ + + +//example 2.7 +//calculate +//time required to irrigate +//maximum area that can be irrigated +clc; +//Given +Q=0.0072;//discharge through well +y=0.1;//average depth of flow +I=0.05//infiltration capacity of soil +A=0.04//area of land +t=(2.303*y*60/I)*log10(Q/(Q-I*A)); +Amax=Q/I; +t=round(t*100)/100; +mprintf("Time required to irrigate=%f minutes.",t); +mprintf("\nMaximum area that can be irrigated=%f ha.",Amax); -- cgit