diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2087/CH2/EX2.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2087/CH2/EX2.6')
-rwxr-xr-x | 2087/CH2/EX2.6/example2_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2087/CH2/EX2.6/example2_6.sce b/2087/CH2/EX2.6/example2_6.sce new file mode 100755 index 000000000..de2918a11 --- /dev/null +++ b/2087/CH2/EX2.6/example2_6.sce @@ -0,0 +1,14 @@ +
+//example 2.6
+//calculate Average depth of water applied
+clc;
+//Given
+L=100;//length of furrow
+W=1;//furrow spacing
+s=0.3//longitudnal slope of furrow
+t1=80//initial time flow of stream
+t2=35//final time flow of stream
+qm=0.6/s;
+q=qm*0.4;
+dav=((q*t2*60)+(2*t1*60))/100;
+mprintf("Average depth of water applied=%f mm.",dav);
|