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/CH14 | |
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/CH14')
-rwxr-xr-x | 1793/CH14/EX14.1/14Q1.sce | 21 | ||||
-rwxr-xr-x | 1793/CH14/EX14.2/14Q2.sce | 16 |
2 files changed, 37 insertions, 0 deletions
diff --git a/1793/CH14/EX14.1/14Q1.sce b/1793/CH14/EX14.1/14Q1.sce new file mode 100755 index 000000000..6cb3528d6 --- /dev/null +++ b/1793/CH14/EX14.1/14Q1.sce @@ -0,0 +1,21 @@ +clc
+G=15.7
+a=0
+b=15
+c=30
+H=3
+Kp=4.977 // from table 13.9
+Pp=Kp*G*H^2/2
+printf('a)the passive force = %f kN/m\n',Pp)
+// for part b
+Kp=4.53
+Pp=Kp*G*H^2/2
+printf(' b)the passive force = %f kN/m\n',Pp)
+// for part c
+Kp=4.13
+Pp=Kp*G*H^2/2
+printf(' c)the passive force = %f kN/m\n',Pp)
+//for part d
+Kp=4.56
+Pp=Kp*G*H^2/2
+printf(' d)the passive force = %f kN/m\n',Pp)
diff --git a/1793/CH14/EX14.2/14Q2.sce b/1793/CH14/EX14.2/14Q2.sce new file mode 100755 index 000000000..79001ee8c --- /dev/null +++ b/1793/CH14/EX14.2/14Q2.sce @@ -0,0 +1,16 @@ +clc
+G=16
+H=7
+c=30
+Ta=0.65*G*H*(tand(45-c/2))^2
+A=Ta*3*3/4
+B1=Ta*3-54.61
+C=Ta*4*4/4
+B2=Ta*4-97.08
+s=2
+As=A*s
+Bs=(B1+B2)*s
+Cs=C*s
+printf( 'The strut loads at level A = %f kN\n',As)
+printf( ' The strut loads at level B = %f kN\n',Bs)
+printf( ' The strut loads at level C = %f kN',Cs)
|