diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3862/CH3/EX3.3/Ex3_3.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3862/CH3/EX3.3/Ex3_3.sce')
-rw-r--r-- | 3862/CH3/EX3.3/Ex3_3.sce | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/3862/CH3/EX3.3/Ex3_3.sce b/3862/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..9c0f84347 --- /dev/null +++ b/3862/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,53 @@ +clear +// + +//variable declaration + +PB=20.0 //Load at point B,KN +PC=10.0 //Load at point C,KN +thetaA=60.0 //angleBAC +thetaD=30.0 //angleBDC + +AC=3.0 //length,m +CD=3.0 //length,m + +AB=(AC+CD)*cos(thetaA*%pi/180) +BD=(AC+CD)*cos(thetaD*%pi/180) +//mistake in book +//angleBCA=angleABC=theta + +theta=(180.0-thetaA)/(2.0) + +//Taking moment about A, we get +RD=(PC*AC+PB*AC*cos(thetaA*%pi/180))/(AC+CD) + +RA=PC+PB-RD +//Joint A +//vertical & horizontal forces sum to zero + +FAB=RA/sin(thetaA*%pi/180) + +printf("\n FAB= %0.2f KN [Comp.]",FAB) +FAC=FAB*cos(thetaA*%pi/180) +printf("\n FAC= %0.2f KN [Tensile]",FAC) + +//Joint D +//vertical & horizontal forces sum to zero + +FDB=RD/sin(thetaD*%pi/180) + +printf("\n FDB= %0.2f KN [Comp.]",FDB) +FDC=FDB*cos(thetaD*%pi/180) +printf("\n FDC= %0.2f KN [Tensile]",FDC) + +//Joint C +//vertical & horizontal forces sum to zero + +FCB=PC/sin(theta*%pi/180) + +printf("\n FCB= %0.2f KN ",FCB) + +//CHECK + +FCB=(FDC-FAC)/cos(theta*%pi/180) +printf("\n FCB= %0.2f KN Checked",FCB) |