summaryrefslogtreecommitdiff
path: root/1793/CH7/EX7.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1793/CH7/EX7.6
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 '1793/CH7/EX7.6')
-rwxr-xr-x1793/CH7/EX7.6/7q6.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1793/CH7/EX7.6/7q6.sce b/1793/CH7/EX7.6/7q6.sce
new file mode 100755
index 000000000..363e3dbc8
--- /dev/null
+++ b/1793/CH7/EX7.6/7q6.sce
@@ -0,0 +1,9 @@
+clc
+//initialisation of variables
+k1= 0.02 //cm/sec
+e1= 0.5
+e2= 0.65
+//calculations
+k2= k1*(e2^3/(1+e2))/(e1^3/(1+e1))
+//results
+printf ('hydraulic conductivity at void ratio of 0.65 = % 2f cm/sec ',k2)