summaryrefslogtreecommitdiff
path: root/1793/CH16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1793/CH16
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/CH16')
-rwxr-xr-x1793/CH16/EX16.1/16Q1.sce19
-rwxr-xr-x1793/CH16/EX16.2/16Q2.sce13
-rwxr-xr-x1793/CH16/EX16.3/16Q3.sce22
-rwxr-xr-x1793/CH16/EX16.4/16Q4.sce20
-rwxr-xr-x1793/CH16/EX16.5/16Q5.sce17
-rwxr-xr-x1793/CH16/EX16.6/16Q6.sce6
-rwxr-xr-x1793/CH16/EX16.7/16Q7.sce9
7 files changed, 106 insertions, 0 deletions
diff --git a/1793/CH16/EX16.1/16Q1.sce b/1793/CH16/EX16.1/16Q1.sce
new file mode 100755
index 000000000..776d776b2
--- /dev/null
+++ b/1793/CH16/EX16.1/16Q1.sce
@@ -0,0 +1,19 @@
+clc
+c=20
+// from table 16.1
+Nc=17.69
+Nq=7.44
+Ng=3.64
+
+Df=3
+G=110
+q=G*Df
+
+C=200
+B=4
+
+Qu= C*Nc+q*Nq+G*B*Ng/2
+
+Fs=3
+Qall=Qu/Fs
+printf('Qa = %f lb/ft^2',Qall)
diff --git a/1793/CH16/EX16.2/16Q2.sce b/1793/CH16/EX16.2/16Q2.sce
new file mode 100755
index 000000000..75e358d6a
--- /dev/null
+++ b/1793/CH16/EX16.2/16Q2.sce
@@ -0,0 +1,13 @@
+clc
+G=18.15
+qa=30000*9.81/1000
+
+Nc=57.75
+Nq=41.44
+Ng=45.41
+C=0
+q=G*1
+B=1
+(1.3*C*Nc+q*Nq+0.4*G*B*Ng)*B^2/3 == qa
+B= sqrt(294.3/(250.7+109.9))
+printf(' B = %f m',B)
diff --git a/1793/CH16/EX16.3/16Q3.sce b/1793/CH16/EX16.3/16Q3.sce
new file mode 100755
index 000000000..eb15bf8c4
--- /dev/null
+++ b/1793/CH16/EX16.3/16Q3.sce
@@ -0,0 +1,22 @@
+clc
+B=1.2
+L=1.2
+c=32
+C=0
+Df=1
+G=16
+Nq=23.18
+Ng=22.02
+Nc=1
+Lqs=1+0.1*B*(tand(45+c/2))^2/L
+Lgs=Lqs
+Lqd=1+0.1*Df*tand(45+c/2)/B
+Lgd=Lqd
+Lcs=1
+Lcd=1
+Gs=19.5
+q=0.5*G+0.5*(Gs-9.81)
+Qu= C*Lcs*Lcd*Nc+q*Lqs*Lqd*Nq+(Gs-9.81)*Lgs*Lgd*B*Ng/2
+Qa=Qu/3
+Q=Qa*B^2
+printf('the gross load = %f kN',Q)
diff --git a/1793/CH16/EX16.4/16Q4.sce b/1793/CH16/EX16.4/16Q4.sce
new file mode 100755
index 000000000..7c5cdbe96
--- /dev/null
+++ b/1793/CH16/EX16.4/16Q4.sce
@@ -0,0 +1,20 @@
+clc
+e=0.1
+B=1
+X=B-2*e
+Y=1.5
+B1=0.8
+L1=1.5
+c=30
+Df=1
+Nq=18.4
+Ng=15.668
+q=1*18
+G=18
+Lqs=1+e*(B1/L1)*(tand(45+c/2))^2
+Lgs=Lqs
+Lqd=1+e*(Df/B1)*tand(45+c/2)
+Lgd=Lqd
+qu=q*Lqs*Lqd*Nq+Lgs*Lgd*G*B1*Ng/2
+Qu=qu*B1*L1
+printf('The magnitude of the gross ultimate load = %f kN',Qu)
diff --git a/1793/CH16/EX16.5/16Q5.sce b/1793/CH16/EX16.5/16Q5.sce
new file mode 100755
index 000000000..8c34def06
--- /dev/null
+++ b/1793/CH16/EX16.5/16Q5.sce
@@ -0,0 +1,17 @@
+clc
+B=1.5
+Df=0.75
+e=0.1*B
+G=17.5
+c=30
+C=0
+q=G*Df
+Nq=18.4
+Ng=15.668
+Lqd=1+0.1*(Df/B)*tand(45+c/2)
+Lgd=Lqd
+Quc=q*Nq*Lqd+Lgd*B*Ng/2
+k=0.8
+a=1.754
+Qua=Quc*(1-a*(e/B)^k)
+printf('The gross ultimate load per unit length = %f kN',Qua)
diff --git a/1793/CH16/EX16.6/16Q6.sce b/1793/CH16/EX16.6/16Q6.sce
new file mode 100755
index 000000000..9734175e3
--- /dev/null
+++ b/1793/CH16/EX16.6/16Q6.sce
@@ -0,0 +1,6 @@
+clc
+Qup=280
+Bp=0.7 // in m
+Bf=1.5
+Quf=Qup*Bf/Bp
+printf('The ultimate bearing capacity = %f kN/m^2',Quf)
diff --git a/1793/CH16/EX16.7/16Q7.sce b/1793/CH16/EX16.7/16Q7.sce
new file mode 100755
index 000000000..995565255
--- /dev/null
+++ b/1793/CH16/EX16.7/16Q7.sce
@@ -0,0 +1,9 @@
+clc
+a=2500
+//doing for the first values only
+Bf=4
+Bp=0.305
+q=a/Bf^2
+Sep=4
+Sef=Sep*(2*Bf/(Bf+Bp))^2
+printf('Sef = %f mm',Sef)