diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1793/CH6 | |
download | Scilab-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/CH6')
-rwxr-xr-x | 1793/CH6/EX6.2/6q2.sce | 13 | ||||
-rwxr-xr-x | 1793/CH6/EX6.3/6q3.sce | 20 | ||||
-rwxr-xr-x | 1793/CH6/EX6.4/6q4.sce | 9 |
3 files changed, 42 insertions, 0 deletions
diff --git a/1793/CH6/EX6.2/6q2.sce b/1793/CH6/EX6.2/6q2.sce new file mode 100755 index 000000000..d91e18f16 --- /dev/null +++ b/1793/CH6/EX6.2/6q2.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+G= 2.6
+LL= 20
+P= 20
+//calclations
+R= (4804574*G-195.55*(LL)^2+156971*(P)^0.5-9527830)^0.5
+n= (1.195e-4)*((LL)^2)-1.964*G-(6.617e-5)*(P)+7.651
+w= %e^n
+//results
+printf ('maximum dry density = % f kg/m^3 ',R)
+printf ('optimum moisture content = % 2f ',w)
+
diff --git a/1793/CH6/EX6.3/6q3.sce b/1793/CH6/EX6.3/6q3.sce new file mode 100755 index 000000000..4bd791ab6 --- /dev/null +++ b/1793/CH6/EX6.3/6q3.sce @@ -0,0 +1,20 @@ +clc
+//initialisation of variables
+do= 1570 //kg/m^3
+mo= 0.545 //kg
+M1= 7.59 //kg
+M2= 4.78 //kg
+M3= 3.007 //kg
+w= 0.102 //
+dmax= 19 //KN/m^3
+//calculations
+Ms= M1-M2
+Mc= Ms-mo
+Vh= Mc/do
+Dc= M3/Vh
+Du= Dc*9.81/1000
+f= Du/(1+w)
+Rc= f*100/dmax
+//results
+printf ('dry unit weight of compaction in the field = % 2f kN/m^3 ',f)
+printf ('relative compaction in the field = % f ',Rc)
diff --git a/1793/CH6/EX6.4/6q4.sce b/1793/CH6/EX6.4/6q4.sce new file mode 100755 index 000000000..ac874a899 --- /dev/null +++ b/1793/CH6/EX6.4/6q4.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+D1= 0.36 //mm
+D2= 0.52 //mm
+D5= 1.42 //mm
+//calculations
+Sn= 1.7*(sqrt((3/(D5)^2)+(1/(D2)^2)+(1/(D1)^2)))
+//results
+printf ('sustainabilty number = % f ',Sn)
|