summaryrefslogtreecommitdiff
path: root/MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb
diff options
context:
space:
mode:
authorTrupti Kini2016-10-16 23:30:42 +0600
committerTrupti Kini2016-10-16 23:30:42 +0600
commit79ae2c179382265e8f31f2abab2fc7610eade128 (patch)
tree7f765445253e91909013d69f19f49185699cdc84 /MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb
parentacf2763ad0400d4eee380c2bf957f2be262f4082 (diff)
downloadPython-Textbook-Companions-79ae2c179382265e8f31f2abab2fc7610eade128.tar.gz
Python-Textbook-Companions-79ae2c179382265e8f31f2abab2fc7610eade128.tar.bz2
Python-Textbook-Companions-79ae2c179382265e8f31f2abab2fc7610eade128.zip
Added(A)/Deleted(D) following books
A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter1.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter10.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter11.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter2.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter4.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter5.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter6.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter7.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter8.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter9.ipynb A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/screenshots/Screenshot_280.png A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/screenshots/Screenshot_281.png A MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/screenshots/Screenshot_282.png A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.10_nHKu37x.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.2_TVYLrac.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.3_QseVBHY.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.4_tHf77dd.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.5_q8NJmAM.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.6_OKBvhyK.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.7_fkGg3JF.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.8_qDewT6c.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/chapter_no.9_hAFUtkV.ipynb A Strength_Of_Materials_by_S_S_Bhavikatti/screenshots/BMD_tqVqRIl.JPG A Strength_Of_Materials_by_S_S_Bhavikatti/screenshots/SFD2_lmhWgCg.JPG A Strength_Of_Materials_by_S_S_Bhavikatti/screenshots/S_F_D_1_PXUHXWr.JPG A "sample_notebooks/Mayur Phadtare/chapter_no.3.ipynb" A sample_notebooks/ShubhamDahiphale/chapter_1.ipynb
Diffstat (limited to 'MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb')
-rw-r--r--MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb1030
1 files changed, 1030 insertions, 0 deletions
diff --git a/MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb b/MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb
new file mode 100644
index 00000000..09420950
--- /dev/null
+++ b/MECHANICS_OF_SOLIDS_by_S.S._Bhavikatti/Chapter3.ipynb
@@ -0,0 +1,1030 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter3-TRUSSES"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example3.1 Page number68"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "theta= 45.0 °\n",
+ "FCB= 56.57 KN\n",
+ "FCD= 40.0 KN\n",
+ "FDB= 40.0 KN\n",
+ "FDE= 40.0 KN\n",
+ "FBE= 113.14 KN\n",
+ "FBA= 120.0 KN\n",
+ "Member , Magnitude of Force in KN , Nature\n",
+ "AB , 120.0 , Tension\n",
+ "BC , 56.57 , Tension\n",
+ "CD , 40.0 , Compresion\n",
+ "DE , 40.0 , Compresion\n",
+ "BE , 113.14 , Compresion\n",
+ "BD , 40.0 , Tension\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sqrt,atan,pi,sin,cos\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "#Determine the inclinations of all inclined members\n",
+ "\n",
+ "theta=atan(1)*180/pi\n",
+ "\n",
+ "print \"theta=\",round(theta,2),\"°\"\n",
+ "\n",
+ "#Now at joints C, there are only two unknowns,forces in members CB and CD, say FCB and FCD.\n",
+ "#Now there are two equations of equilibrium for the forces meeting at the joint and two unknown forces. Hence, the unknown forces can be determined. At joint C sum V= 0 condition shows that the force FCB should act away from the joint C so that its vertical component balances the vertical downward load at C.\n",
+ " \n",
+ "P=40.0\n",
+ "FCB=P/sin(theta*pi/180)\n",
+ "\n",
+ "print \"FCB=\",round(FCB,2),\"KN\"\n",
+ "\n",
+ "#Now sum H=0 indicates that FCD should act towards C.\n",
+ "\n",
+ "FCD=FCB*cos(theta*pi/180)\n",
+ "\n",
+ "print \"FCD=\",round(FCD,2),\"KN\"\n",
+ "\n",
+ "#In the present case, near the joint C, the arrows are marked on the members CB and CD to indicate forces FCB and FCD directions as found in the analysis of joint C. Then reversed directions are marked in the members CB and CD near joints B and D, respectively.\n",
+ "\n",
+ "FDB=40.0\n",
+ "FDE=40.0\n",
+ "\n",
+ "print \"FDB=\",round(FDB,2),\"KN\"\n",
+ "\n",
+ "print \"FDE=\",round(FDE,2),\"KN\"\n",
+ "\n",
+ "#In the present case, after marking the forces in the members DB and DE, we find that analysis of joint B can be taken up.\n",
+ "\n",
+ "FBE=(FCB*sin(theta*pi/180)+P)/(sin(theta*pi/180))\n",
+ "\n",
+ "FBA=FCB*cos(theta*pi/180)+FBE*cos(theta*pi/180)\n",
+ "\n",
+ "print \"FBE=\", round(FBE,2),\"KN\"\n",
+ "print \"FBA=\", round(FBA,2),\"KN\"\n",
+ "#Determine the nature of forces in each member and tabulate the results. Note that if the arrow marks on a member are towards each other, then the member is in tension and if the arrow marks are away from each other, the member is in compression.\n",
+ "\n",
+ "print \"Member\",\",\",\"Magnitude of Force in KN\",\",\",\"Nature\"\n",
+ "print \"AB\",\",\", round(FBA,2) ,\",\",\"Tension\"\n",
+ "print \"BC\",\",\", round(FCB,2) ,\",\",\"Tension\"\n",
+ "print \"CD\",\",\", round(FCD,2) ,\",\",\"Compresion\"\n",
+ "print \"DE\",\",\", round(FDE,2) ,\",\",\"Compresion\"\n",
+ "print \"BE\",\",\", round(FBE,2) ,\",\",\"Compresion\"\n",
+ "print \"BD\",\",\", round(P,2) ,\",\",\"Tension\"\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example3.2 Page number70"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FAB= 83.7158 KN (Comp.)\n",
+ "FAE= 41.8579 KN (Tension)\n",
+ "FDC= 89.4893 KN (Comp.)\n",
+ "FDE= 44.7446 KN (Tension)\n",
+ "FBC= 60.6218 KN (Comp.)\n",
+ "FCE= 31.7543 KN (Tension)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sqrt,atan,pi,sin,cos\n",
+ "\n",
+ "#Now, we cannot find a joint with only two unknown forces without finding reactions.\n",
+ "#Consider the equilibrium of the entire frame,Sum of moments about A is zero,Horizontal forces & Vertical forces is zero.\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PB=40.0\n",
+ "PC=50.0\n",
+ "PE=60.0\n",
+ "\n",
+ "theta=60.0\n",
+ "\n",
+ "RD=(PC*3+PE*2+PB*1)/(4.0)\n",
+ "\n",
+ "RA=PB+PC+PE-RD\n",
+ "\n",
+ "FAB=RA/sin(theta*pi/180)\n",
+ "\n",
+ "print\"FAB=\",round(FAB,4),\"KN\" ,\"(Comp.)\"\n",
+ "\n",
+ "FAE=FAB*cos(theta*pi/180)\n",
+ "\n",
+ "print\"FAE=\",round(FAE,4),\"KN\" , \"(Tension)\"\n",
+ "\n",
+ "FDC=RD/sin(theta*pi/180)\n",
+ "\n",
+ "print\"FDC=\",round(FDC,4),\"KN\" , \"(Comp.)\"\n",
+ "\n",
+ "FDE=FDC*cos(theta*pi/180)\n",
+ "\n",
+ "print\"FDE=\",round(FDE,4),\"KN\" , \"(Tension)\"\n",
+ "\n",
+ "FBE=(FAB*sin(theta*pi/180)-PB)/sin(theta*pi/180)\n",
+ "\n",
+ "FBC=(FAB+FBE)*(0.5)\n",
+ "print\"FBC=\",round(FBC,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "\n",
+ "FCE=(FDC*sin(theta*pi/180)-PC)/(sin(theta*pi/180))\n",
+ "print\"FCE=\",round(FCE,4),\"KN\",\"(Tension)\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example3.3 Page number72"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FAB= 23.09 KN [Comp.]\n",
+ "FAC= 11.55 KN [Tensile]\n",
+ "FDB= 20.0 KN [Comp.]\n",
+ "FDC= 17.32 KN [Tensile]\n",
+ "FCB= 11.55 KN FCB= 11.55 KN Checked\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sqrt,atan,pi,sin,cos\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PB=20.0 #Load at point B,KN\n",
+ "PC=10.0 #Load at point C,KN \n",
+ "thetaA=60.0 #angleBAC\n",
+ "thetaD=30.0 #angleBDC\n",
+ "\n",
+ "AC=3.0 #length,m\n",
+ "CD=3.0 #length,m\n",
+ "\n",
+ "AB=(AC+CD)*cos(thetaA*pi/180)\n",
+ "BD=(AC+CD)*cos(thetaD*pi/180)\n",
+ "#mistake in book\n",
+ "#angleBCA=angleABC=theta\n",
+ "\n",
+ "theta=(180.0-thetaA)/(2.0) \n",
+ "\n",
+ "#Taking moment about A, we get\n",
+ "\n",
+ "RD=(PC*AC+PB*AC*cos(thetaA*pi/180))/(AC+CD)\n",
+ "\n",
+ "RA=PC+PB-RD\n",
+ "#Joint A\n",
+ "#vertical & horizontal forces sum to zero\n",
+ "\n",
+ "FAB=RA/sin(thetaA*pi/180)\n",
+ "\n",
+ "print \"FAB=\",round(FAB,2),\"KN\",\"[Comp.]\"\n",
+ "FAC=FAB*cos(thetaA*pi/180)\n",
+ "print \"FAC=\",round(FAC,2),\"KN\",\"[Tensile]\"\n",
+ "\n",
+ "#Joint D\n",
+ "#vertical & horizontal forces sum to zero\n",
+ "\n",
+ "FDB=RD/sin(thetaD*pi/180)\n",
+ "\n",
+ "print \"FDB=\",round(FDB,2),\"KN\",\"[Comp.]\"\n",
+ "FDC=FDB*cos(thetaD*pi/180)\n",
+ "print \"FDC=\",round(FDC,2),\"KN\",\"[Tensile]\"\n",
+ "\n",
+ "#Joint C\n",
+ "#vertical & horizontal forces sum to zero\n",
+ "\n",
+ "FCB=PC/sin(theta*pi/180)\n",
+ "\n",
+ "print \"FCB=\",round(FCB,2),\"KN\",\n",
+ "\n",
+ "#CHECK\n",
+ "\n",
+ "FCB=(FDC-FAC)/cos(theta*pi/180)\n",
+ "print \"FCB=\",round(FCB,2),\"KN\",\"Checked\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example3.4 Page number74\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FBF= 42.4264 KN (Tension)\n",
+ "FBC= 30.0 KN (Comp.)\n",
+ "FCF= 50.0 KN (Comp.)\n",
+ "FCD= 30.0 KN (Comp.)\n",
+ "FDF= 70.7107 KN (Tensile)\n",
+ "FDF= 70.7107 KN Checked\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sqrt,atan,pi,sin,cos\n",
+ "\n",
+ "#Now, we cannot find a joint with only two unknown forces without finding reactions.\n",
+ "#Consider the equilibrium of the entire frame,Sum of moments about A is zero,Horizontal forces & Vertical forces is zero.\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PB=30.0 #vertical load at point B,KN\n",
+ "PC=50.0 #vertical load at point C,KN \n",
+ "PDv=40.0 #vertical load at point D,KN\n",
+ "PDh=20.0 #Horizontal load at point D,KN\n",
+ "PF=30.0 #vertical load at point F,KN\n",
+ "HA=PDh\n",
+ "\n",
+ "RE=(PC*4+PDv*8+PDh*4+PF*4)/(8.0)\n",
+ "\n",
+ "VA=PB+PC+PDv+PF-RE\n",
+ "\n",
+ "#joint A\n",
+ "#sum of vertical & sum of horizontal forces is zero.\n",
+ "\n",
+ "FAB=VA\n",
+ "FAF=HA\n",
+ "\n",
+ "#joint E\n",
+ "#sum of vertical & sum of horizontal forces is zero.\n",
+ "\n",
+ "FED=RE\n",
+ "FEF=0\n",
+ "\n",
+ "#Joint B: Noting that inclined member is at 45°\n",
+ "#sum of vertical & sum of horizontal forces is zero.\n",
+ "\n",
+ "theta=45.0\n",
+ "FBF=(VA-PB)/sin(theta*pi/180)\n",
+ "\n",
+ "print\"FBF=\",round(FBF,4),\"KN\" , \"(Tension)\"\n",
+ "\n",
+ "FBC=FBF*cos(theta*pi/180)\n",
+ "\n",
+ "print\"FBC=\",round(FBC,4),\"KN\" , \"(Comp.)\"\n",
+ "\n",
+ "#Joint C: \n",
+ "#sum of vertical & sum of horizontal forces is zero.\n",
+ "\n",
+ "\n",
+ "FCF=PC\n",
+ "\n",
+ "print\"FCF=\",round(FCF,4),\"KN\" , \"(Comp.)\"\n",
+ "\n",
+ "FCD=FBC\n",
+ "\n",
+ "print\"FCD=\",round(FCD,4),\"KN\" , \"(Comp.)\"\n",
+ "\n",
+ "#Joint D: Noting that inclined member is at 45°\n",
+ "#sum of vertical & sum of horizontal forces is zero.\n",
+ "\n",
+ "theta=45.0\n",
+ "FDF=(RE-PDv)/cos(theta*pi/180)\n",
+ "\n",
+ "print\"FDF=\",round(FDF,4),\"KN\" , \"(Tensile)\"\n",
+ "\n",
+ "#check\n",
+ "\n",
+ "FDF=(FCD+PDh)/cos(theta*pi/180)\n",
+ "\n",
+ "print\"FDF=\",round(FDF,4),\"KN\" , \"Checked\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example3.5 Page number75"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FED= 25.0 KN (Tension)\n",
+ "FEF= 15.0 KN (Comp.)\n",
+ "FAB= 20.0 KN (Comp.)\n",
+ "FAF= 15.0 KN (Comp.)\n",
+ "FCB= 25.0 KN (Comp.)\n",
+ "FCD= 20.0 KN (Tension)\n",
+ "FBF= 0.0\n",
+ "FBD= 15.0 KN (Tension)\n",
+ "FFD= 0.0\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sqrt,asin,pi,sin,cos\n",
+ "\n",
+ "#All inclined members have the same inclination to horizontal. Now, length of an inclined member is BF\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PE=20.0\n",
+ "AF=3.0\n",
+ "FE=3.0\n",
+ "AB=4.0\n",
+ "FD=4.0\n",
+ "BD=3.0\n",
+ "CD=4.0\n",
+ "\n",
+ "BF=sqrt(pow(AF,2)+pow(AB,2))\n",
+ "DE=BF\n",
+ "BC=DE\n",
+ "\n",
+ "#sin(theta)=AB/BF\n",
+ "#cos(theta)=AF/BF\n",
+ "\n",
+ "theta=asin(AB/BF)\n",
+ "#As soon as a joint is analysed the forces on the joint are marked on members \n",
+ "\n",
+ "#Joint E\n",
+ "#Consider the equilibrium of the entire frame,Sum of moments about A is zero,Horizontal forces & Vertical forces is zero.\n",
+ "\n",
+ "FED=PE/sin(theta)\n",
+ "print\"FED=\",round(FED),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "FEF=FED*cos(theta)\n",
+ "print\"FEF=\",round(FEF),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#At this stage as no other joint is having only two unknowns, no further progress is possible. Let us find the reactions at the supports considering the whole structure. Let the reaction be RC HORIZONTAL at point C,VA,HA at point A Vertically & Horizontally respectively.\n",
+ "#Taking moment at point A,\n",
+ "\n",
+ "RC=PE*6/8 \n",
+ "#sum of vertical & sun of horizontal forces is zero.\n",
+ "\n",
+ "VA=PE\n",
+ "HA=RC\n",
+ "\n",
+ "#Joint A\n",
+ "#sum of vertical & sun of horizontal forces is zero.\n",
+ "FAB=VA\n",
+ "print\"FAB=\",round(FAB),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FAF=HA\n",
+ "print\"FAF=\",round(FAF),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#Joint C\n",
+ "#sum of vertical & sun of horizontal forces is zero.\n",
+ "FCB=RC/cos(theta)\n",
+ "print\"FCB=\",round(FCB),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FCD=FCB*sin(theta)\n",
+ "print\"FCD=\",round(FCD),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#Joint B\n",
+ "#sum of vertical & sun of horizontal forces is zero.\n",
+ "\n",
+ "FBF=(FCB*sin(theta)-FAB)/sin(theta)\n",
+ "\n",
+ "print\"FBF=\",round(FBF)\n",
+ "\n",
+ "FBD=FCB*cos(theta)\n",
+ "print\"FBD=\",round(FBD),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#joint F\n",
+ "#sum of vertical & sun of horizontal forces is zero.\n",
+ "\n",
+ "FFD=FBF\n",
+ "print\"FFD=\",round(FFD)\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Example 3.6 page number 78"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FHG= 25.0 KN (Comp.)\n",
+ "FHF= 15.0 KN (Tension)\n",
+ "FAC= 18.0278 KN (Comp.)\n",
+ "FAB= 15.0 KN (Tension)\n",
+ "FBC= 0.0\n",
+ "FBD=FBA 15.0 KN (Tension)\n",
+ "FCE=FCA 18.0278 KN (Comp.)\n",
+ "FDE= 0.0\n",
+ "FDF=FDB 15.0 KN (Tension)\n",
+ "FEF= 0\n",
+ "FEG=FCE= 18.0278 KN (Comp.)\n",
+ "FFG= 12.0 KN (Tension)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import atan, cos , sin, pi\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "AB=2.0 #length of beam AB,m\n",
+ "BD=2.0 #length of beam BD,m\n",
+ "DF=2.0 #length of beam DF,m\n",
+ "FH=3.0 #length of beam FH,m\n",
+ "FG=4.0 #length of beam FG,m\n",
+ "PF=12.0 #Vertical Load at point F,KN\n",
+ "PH=20.0 #Vertical Load at point H,KN\n",
+ "\n",
+ "#mistake in book FG=4.0 , given FG=2.0 \n",
+ "\n",
+ "theta1=atan(FG/(AB+BD+DF))\n",
+ "theta3=atan(FG/FH)\n",
+ "theta2=theta3\n",
+ "\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "#joint H\n",
+ "\n",
+ "FHG=PH/sin(theta3)\n",
+ "print \"FHG=\",round(FHG),\"KN\",\"(Comp.)\" \n",
+ "\n",
+ "FHF=FHG*cos(theta2)\n",
+ "print \"FHF=\",round(FHF),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#taking moment at G\n",
+ "\n",
+ "RA=PH*FH/(AB+BD+DF)\n",
+ "\n",
+ "RG=RA+PF+PH\n",
+ "\n",
+ "#joint A\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FAC=RA/sin(theta1)\n",
+ "print \"FAC=\",round(FAC,4),\"KN\",\"(Comp.)\" \n",
+ "\n",
+ "FAB=FAC*cos(theta1)\n",
+ "print \"FAB=\",round(FAB),\"KN\",\"(Tension)\"\n",
+ " \n",
+ "#joint B\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FBC=0\n",
+ "print \"FBC=\",round(FBC) \n",
+ "FBA=FAB\n",
+ "FBD=FBA\n",
+ "print \"FBD=FBA\",round(FBD),\"KN\",\"(Tension)\"\n",
+ " \n",
+ "#Joint C: Sum of Forces normal to AC = 0, gives FCD =0 since FBC = 0 ,sum of Forces parallel to CE =0 \n",
+ "\n",
+ "FCA=FAC\n",
+ "FCE=FCA\n",
+ "print \"FCE=FCA\",round(FCE,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "\n",
+ "#joint D\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FDE=0\n",
+ "print \"FDE=\",round(FDE) \n",
+ "\n",
+ "FDB=FBD\n",
+ "FDF=FDB\n",
+ "\n",
+ "print \"FDF=FDB\",round(FDF),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#Joint E: sum of Forces normal to CG = 0, gives FEF = 0 and sum of Forces in the direction of CG = 0, gives \n",
+ "\n",
+ "FEF=0\n",
+ "\n",
+ "print \"FEF=\",FEF\n",
+ "\n",
+ "FEG=FCE\n",
+ "\n",
+ "print \"FEG=FCE=\", round(FEG,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#Joint F:\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FFG=PF\n",
+ "\n",
+ "print \"FFG=\",round(FFG),\"KN\",\"(Tension)\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example 3.7 page number 80"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FGF= 23.094 KN (Tension)\n",
+ "FGE= 11.547 KN (Comp.)\n",
+ "FFG= 23.094 KN (Comp.)\n",
+ "FFD= 13.094 KN (Tension)\n",
+ "FAB= 36.7543 KN (Comp.)\n",
+ "FAC= 8.3771 KN (Tension)\n",
+ "FBC= 9.4338 KN (Comp.)\n",
+ "FBD= 13.6603 KN (Comp.)\n",
+ "FCD= 9.4338 KN (Tension)\n",
+ "FCE= 1.0566 KN (Comp.)\n",
+ "FDE= 44.0748 KN (Comp.)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sin,cos,pi\n",
+ "\n",
+ "# Since all members are 3 m long, all triangles are equilateral and hence all inclined members are at 60° to horizontal. Joint-by-joint analysis is carried out . Then nature of the force is determined. \n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "AB=3.0\n",
+ "BC=AB\n",
+ "AC=AB\n",
+ "BD=BC\n",
+ "CD=BD\n",
+ "CE=CD\n",
+ "DE=CE\n",
+ "EF=DE\n",
+ "DF=DE\n",
+ "EG=DE\n",
+ "FG=DF\n",
+ "\n",
+ "theta=60.0*pi/180 #angles BAC,BCA,DCE,DEC,FEG,FGE,°\n",
+ "\n",
+ "PB=40.0 #Vertical Loading at point B,KN\n",
+ "PD=30.0 #Vertical Loading at point D,KN\n",
+ "HF=10.0 #Horizontal Loading at point F,KN\n",
+ "PG=20.0 #Vertical Loading at point G,KN\n",
+ "\n",
+ "#joint G\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FGF=PG/sin(theta)\n",
+ "\n",
+ "print \"FGF=\",round(FGF,4),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "FGE=FGF*cos(theta)\n",
+ "\n",
+ "print \"FGE=\",round(FGE,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#joint F\n",
+ "\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FFG=FGF\n",
+ "\n",
+ "print \"FFG=\",round(FFG,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FFE=FGF\n",
+ "FFD=FGF*cos(theta)+FFE*cos(theta)-HF\n",
+ "print \"FFD=\",round(FFD,4),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#Now, without finding reaction we cannot proceed. Hence, consider equilibrium of the entire truss\n",
+ "#moment about point A\n",
+ "\n",
+ "RE=((PB*AC/2)-(HF*EF*sin(theta))+(PD*(AC+CE/2))+(PG*(AC+CE+EG)))/(AC+CE)\n",
+ "\n",
+ "VA=PB+PD+PG-RE\n",
+ "\n",
+ "HA=HF\n",
+ "\n",
+ "#joint A\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FAB=VA/sin(theta)\n",
+ "\n",
+ "print \"FAB=\",round(FAB,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FAC=FAB*cos(theta)-HF\n",
+ "\n",
+ "print \"FAC=\",round(FAC,4),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "\n",
+ "#joint B\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FBC=(PB-FAB*sin(theta))/sin(theta)\n",
+ "\n",
+ "print \"FBC=\",round(FBC,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FBA=FAB\n",
+ "FBD=-FBC*cos(theta)+FBA*cos(theta)\n",
+ "\n",
+ "print \"FBD=\",round(FBD,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#joint C\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FCD=FBC*sin(theta)/sin(theta)\n",
+ "\n",
+ "print \"FCD=\",round(FCD,4),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "FCE=FCD*cos(theta)+FBC*cos(theta)-FAC\n",
+ "\n",
+ "print \"FCE=\",round(FCE,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#joint D\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FDE=(PD+FCD*sin(theta))/sin(theta)\n",
+ "\n",
+ "print \"FDE=\",round(FDE,4),\"KN\",\"(Comp.)\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example 3.8 page number82"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FFH= 69.282 KN (Comp.)\n",
+ "FGH= 5.7735 KN (Comp.)\n",
+ "FGI= 72.1688 KN (Tensile)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sin,cos,pi\n",
+ "\n",
+ "#Each load is 10 kN and all triangles are equilateral with sides 4 m.\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PB=10.0\n",
+ "PD=PB\n",
+ "PF=PD\n",
+ "AB=4.0\n",
+ "BC=AB\n",
+ "AC=BC\n",
+ "BD=BC\n",
+ "CD=BC\n",
+ "DE=CD\n",
+ "CE=CD\n",
+ "DF=DE\n",
+ "EF=DE\n",
+ "EG=DE\n",
+ "FG=EF\n",
+ "#Take section (A)–(A), which cuts the members FH, GH and GI and separates the truss into two parts. \n",
+ "AG=AC+CE+EG\n",
+ "BG=CE+EG+AC/2\n",
+ "DG=EG+CE/2\n",
+ "FG1=EG/2\n",
+ "RA=PB*7/2\n",
+ "RO=RA\n",
+ "theta=60.0*pi/180\n",
+ "#moment at point G\n",
+ "FFH=(RA*AG-PB*BG-PD*DG-PF*FG1)/(FG*sin(theta))\n",
+ "print \"FFH=\",round(FFH,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "\n",
+ "FGH=(RA-PB-PD-PF)/(sin(theta))\n",
+ "print \"FGH=\",round(FGH,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FGI=FFH+FGH*cos(theta)\n",
+ "print \"FGI=\",round(FGI,4),\"KN\",\"(Tensile)\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example 3.9 page number 83"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FL3L4= 412.5 KN (Tension)\n",
+ "FU4U3= 456.2 KN (Comp.)\n",
+ "FU4L3= 62.5 KN (Tension)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import asin,acos,sin,cos,sqrt\n",
+ "\n",
+ "#To determine reactions, consider equilibrium equations\n",
+ "\n",
+ "#variable declaration\n",
+ " #all Vertical loading are in KN\n",
+ "PL1=200.0 \n",
+ "PL2=200.0\n",
+ "PL3=150.0\n",
+ "PL4=100.0\n",
+ "PL5=100.0\n",
+ "\n",
+ "#length in m\n",
+ "UL1=6.0\n",
+ "UL2=8.0\n",
+ "UL3=9.0\n",
+ "UL4=UL2\n",
+ "UL5=UL1\n",
+ "\n",
+ "L1=6.0\n",
+ "L2=6.0\n",
+ "L3=6.0\n",
+ "L4=6.0\n",
+ "L5=6.0\n",
+ "L6=6.0\n",
+ "\n",
+ "#moment at point LO\n",
+ "\n",
+ "R2=(PL1*L1+PL2*(L1+L2)+PL3*(L1+L2+L3)+PL4*(L1+L2+L3+L4)+PL5*(L1+L2+L3+L4+L5))/(L1+L2+L3+L4+L5+L6)\n",
+ "\n",
+ "R1=PL1+PL2+PL3+PL4+PL5-R2\n",
+ "\n",
+ "#Take the section (1)–(1) and consider the right hand side part.\n",
+ "\n",
+ "U3U4=sqrt(pow(1,2)+pow(UL1,2))\n",
+ "theta1=asin(1/U3U4)\n",
+ "\n",
+ "L3U4=sqrt(pow(UL1,2)+pow(UL2,2))\n",
+ "theta2=asin(6/L3U4)\n",
+ "\n",
+ "#moment at U4\n",
+ "\n",
+ "FL3L4=(R2*(L5+L6)-PL4*L4)/UL4\n",
+ "\n",
+ "print \"FL3L4=\", round(FL3L4,1),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#moment at L3\n",
+ "FU4U3=(-PL4*L4-PL5*(L4+L5)+R2*(L4+L5+L6))/(cos(theta1)*UL3)\n",
+ "print \"FU4U3=\", round(FU4U3,1),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "#sum of horizontal forces \n",
+ "FL4L3=FL3L4\n",
+ "FU4L3=(-FL4L3+FU4U3*cos(theta1))/sin(theta2)\n",
+ "print \"FU4L3=\", round(FU4L3,1),\"KN\",\"(Tension)\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example 3.10 page number84"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "theta= 60.0 °\n",
+ "F2= 51.9615 KN (Tension)\n",
+ "F1= 110.0 KN (Comp.)\n",
+ "F3= 69.282 KN (Tension)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import atan,tan,sin,cos,pi\n",
+ "\n",
+ "#Each load is 20 kN.\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "P=20.0\n",
+ "AB=18.0\n",
+ "A=3.0\n",
+ "\n",
+ "RA=P*7/2\n",
+ "RB=RA\n",
+ "\n",
+ "theta1=30.0*pi/180\n",
+ "a=(3*A)/(4*cos(theta1))\n",
+ "#Take Section (A)–(A) and consider the equilibrium of left hand side part of the French Truss\n",
+ "#Drop perpendicular CE on AB. \n",
+ "\n",
+ "CE=3*A*tan(theta1)\n",
+ "DE=A\n",
+ "\n",
+ "theta=atan(CE/DE)*180/pi\n",
+ "print \"theta=\",round(theta),\"°\"\n",
+ "\n",
+ "#moment at point A\n",
+ "\n",
+ "F2=(P*a*cos(theta1)*6)/(A*2*sin(theta*pi/180))\n",
+ "print \"F2=\",round(F2,4),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#sum of all vertical forces & sum of all horizotal forces is zero\n",
+ "F1=(F2*sin(theta*pi/180)+RA-P*3)/(sin(theta1))\n",
+ "print \"F1=\",round(F1,4),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "F3=F1*cos(theta1)-F2*cos(theta*pi/180)\n",
+ "print \"F3=\",round(F3,4),\"KN\",\"(Tension)\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# example 3.11 page number 85"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "FAE= 30.0 KN (Tension)\n",
+ "FBC= 71.4 KN (Comp.)\n",
+ "FFC= 40.98 KN (Tension)\n",
+ "FAB= 92.62 KN (Comp.)\n",
+ "FAF= 40.98 KN (Tension)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from math import sin,cos,pi,sqrt\n",
+ "\n",
+ "#variable declaration\n",
+ "\n",
+ "PA=15.0 #vertical loading at point A,KN\n",
+ "PB=30.0 #vertical loading at point B,KN\n",
+ "PC=30.0 #vertical loading at point C,KN\n",
+ "PD=30.0 #vertical loading at point D,KN\n",
+ "PE=15.0 #vertical loading at point E,KN\n",
+ "\n",
+ "#Due to symmetry, the reactions are equal\n",
+ "RA=(PA+PB+PC+PD+PE)/2\n",
+ "RB=RA\n",
+ "#Drop perpendicular CH on AF. \n",
+ "#in traingle ACH\n",
+ "\n",
+ "angleACH=45.0*pi/180 #angleACH,°\n",
+ "angleFCV=30.0*pi/180 # FC is inclined at 30° to vertical i.e., 60° to horizontal and CH = 5 m \n",
+ "CH=5.0\n",
+ "angleFCH=60.0*pi/180\n",
+ "\n",
+ "#It is not possible to find a joint where there are only two unknowns. Hence, consider section (1)–(1). \n",
+ "#For left hand side part of the frame\n",
+ "#moment at C\n",
+ "\n",
+ "FAE=(RA*CH-PA*CH-PB*CH/2)/(CH)\n",
+ "print \"FAE=\",round(FAE),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#Assuming the directions for FFC and FBC \n",
+ "#sum of vertical & sum of horizontal forces is zero\n",
+ "\n",
+ "#FFC=FBC*sqrt(2)-RA\n",
+ "\n",
+ "FBC=(RA*sin(angleFCH)-PA)/(sqrt(2)*sin(angleFCH)-(1/sqrt(2)))\n",
+ "print \"FBC=\",round(FBC,2),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "FFC=FBC*sqrt(2)-RA\n",
+ "print \"FFC=\",round(FFC,2),\"KN\",\"(Tension)\"\n",
+ "\n",
+ "#Assumed directions of FBC and FFC are correct. Therefore, FBC is in compression and FFC is in tension. Now we can proceed with method of joints to find the forces in other members. Since it is a symmetric truss, analysis of half the truss is sufficient. Other values may be written down by making use of symmetrry.\n",
+ "\n",
+ "#Joint B: sum of forces normal to AC = 0, gives \n",
+ "\n",
+ "FBF=PC*cos(angleACH)\n",
+ "\n",
+ "#sum of forces parallel to AC = 0, gives \n",
+ "\n",
+ "FAB=FBC+PC*sin(angleACH)\n",
+ "\n",
+ "print \"FAB=\",round(FAB,2),\"KN\",\"(Comp.)\"\n",
+ "\n",
+ "\n",
+ "\n",
+ "#JOINT A\n",
+ "#sum of vertical & sum of horizontal forces is zero\n",
+ "\n",
+ "FAF=(FAB*sin(angleACH)+PA-RA)/sin(angleFCV)\n",
+ "\n",
+ "print \"FAF=\",round(FAF,2),\"KN\",\"(Tension)\"\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python [Root]",
+ "language": "python",
+ "name": "Python [Root]"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.12"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}