diff options
Diffstat (limited to '1793/CH4/EX4.1/4q1.sce')
-rwxr-xr-x | 1793/CH4/EX4.1/4q1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1793/CH4/EX4.1/4q1.sce b/1793/CH4/EX4.1/4q1.sce new file mode 100755 index 000000000..05df67dde --- /dev/null +++ b/1793/CH4/EX4.1/4q1.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+V1= 24.6 //cm^3
+V2= 15.9 //cm^3
+M1= 44 //g
+M2= 30.1 //g
+W= 1 //g/cm^3
+//calculations
+SL= (((M1-M2)/M2)*100)-(((V1-V2)/M2)*W*100)
+//results
+printf ('shrinkage limit of the soil = % 2f ',SL)
+
|