blob: 05df67dde1b14a85529627f0ad66421a11dc67c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
|