summaryrefslogtreecommitdiff
path: root/2087/CH3/EX3.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2087/CH3/EX3.5
downloadScilab-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/CH3/EX3.5')
-rwxr-xr-x2087/CH3/EX3.5/example3_5.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2087/CH3/EX3.5/example3_5.sce b/2087/CH3/EX3.5/example3_5.sce
new file mode 100755
index 000000000..e94453b43
--- /dev/null
+++ b/2087/CH3/EX3.5/example3_5.sce
@@ -0,0 +1,20 @@
+
+
+//example 3.5
+//calculate Field Capacity
+clc;
+//Given
+d=2; //root zone depth
+Wc=0.05; //existing water content
+gammad=15; //dry density of soil
+gammaw=9.81; //unit weigth of water
+Vw=500 //water applied to the soil
+Wl=0.1; //water loss
+A=1000; //area of plot
+Vu=Vw*0.9; //volume of water used in soil
+Wu=Vu*gammaw; //weigth of water used in soil
+Ws=A*d*gammad; //total dry weigth of soil
+Wa=Wu*100/Ws; //percent water added
+Fc=Wc*100+Wa;
+Fc=round(Fc*100)/100;
+mprintf("The Field Capacity of soil is=%f percent.",Fc);