diff options
Diffstat (limited to '1793/CH7/EX7.6')
-rwxr-xr-x | 1793/CH7/EX7.6/7q6.sce | 9 |
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)
|