summaryrefslogtreecommitdiff
path: root/Engineering_Mechanics,_Schaum_Series_by_McLean/chapter5_4.ipynb
blob: 8951e1db85626572889f82e0186e98fab7b2b4fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
{
 "metadata": {
  "name": "chapter5.ipynb"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 5: Equilibrium of Coplanar Force Systems."
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-1, Page no 58"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "import numpy as np\n",
      "\n",
      "#Initilization of variables\n",
      "# From eqn's 1&2\n",
      "D=np.array([[6/sqrt(40),-4/sqrt(20)],[2/sqrt(40),2/sqrt(20)]])\n",
      "B=np.array([0,25]) #lb\n",
      "\n",
      "#Calculations\n",
      "\n",
      "X=np.linalg.solve(D,B)\n",
      "\n",
      "#Result\n",
      "\n",
      "print'The tension in  cable AB is',round(X[1],1),\"lb\"\n",
      "print'The tension in cable AC is',round(X[0],1),\"lb\"\n",
      "\n",
      "# The tensions in the cable AB & AC is off by 0.1 lb"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The tension in  cable AB is 33.5 lb\n",
        "The tension in cable AC is 31.6 lb\n"
       ]
      }
     ],
     "prompt_number": 11
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-2, Page no 59"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "F1=100 #lb\n",
      "R=16 #in\n",
      "\n",
      "#Calculations\n",
      "theta=arcsin(14*R**-1)*(180/pi) #degrees\n",
      "# since theta=61 degrees,\n",
      "sin61=0.8746\n",
      "cos61=0.4848\n",
      "N=F1/sin61 #lb\n",
      "P=N*cos61 #lb\n",
      "\n",
      "#Result\n",
      "\n",
      "print'The value of normal reaction offered is',round(N,1),\"lb\"\n",
      "print'The push required is',round(P,1),\"lb\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The value of normal reaction offered is 114.3 lb\n",
        "The push required is 55.4 lb\n"
       ]
      }
     ],
     "prompt_number": 15
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-3,Page no 59"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "L=20 #m\n",
      "M=1200 #kg\n",
      "g=9.81 #m/s**2\n",
      "H=10 #m\n",
      "\n",
      "#Calculations\n",
      "\n",
      "AB=sqrt(L**2-H**2) #Applying Pythagoras Theorem\n",
      "costheta=17.3/20\n",
      "F1=M*g*H/AB #N\n",
      "F2=M*g/costheta #N\n",
      "\n",
      "#Result\n",
      "\n",
      "print'Force F1 is',round(F1),\"N\"\n",
      "print'Force F2 is',round(F2),\"N\"\n",
      "\n",
      "#Decimal accuracy causes discrepancy in answers compared to the textbook answers\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Force F1 is 6797.0 N\n",
        "Force F2 is 13609.0 N\n"
       ]
      }
     ],
     "prompt_number": 45
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-4, Page No 60"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "import numpy as np\n",
      "\n",
      "#Initilization of variables\n",
      "Fx=1000 #lb\n",
      "Fy=1000 #lb\n",
      "costheta=9*15**-1\n",
      "cosbeta=12*15**-1\n",
      "sintheta=4*5**-1\n",
      "sinbeta=3*5**-1\n",
      "\n",
      "#Calculations\n",
      "#Matrix solution\n",
      "A=np.array([[costheta,-cosbeta],[sintheta,sinbeta]]) \n",
      "B=np.array([-1000,1000])\n",
      "X=np.linalg.solve(A,B)\n",
      "\n",
      "#Result\n",
      "print'The force in AB is',round(X[0]),\"lb compression\"\n",
      "print'The force in BC is',round(X[1]),\"lb compression\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The force in AB is 200.0 lb compression\n",
        "The force in BC is 1400.0 lb compression\n"
       ]
      }
     ],
     "prompt_number": 17
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-5, Page no 61"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "import numpy as np\n",
      "\n",
      "#Initilization of variables\n",
      "w=10 #lb/ft\n",
      "L=12 #ft\n",
      "# as theta=30 degrees,\n",
      "sin30=2**-1\n",
      "cos30=sqrt(3)*2**-1\n",
      "\n",
      "#Calculation\n",
      "#Matrix Calculations\n",
      "A=np.array([[cos30,-cos30],[sin30,sin30]]) \n",
      "B=np.array([0,120]) \n",
      "X=np.linalg.solve(A,B)\n",
      "\n",
      "#Result\n",
      "print'The tension in the cable is,T=',round(X[0]),\"lb\"\n",
      "print'The reaction at B is,R',round(X[1]),\"lb\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The tension in the cable is,T= 120.0 lb\n",
        "The reaction at B is,R 120.0 lb\n"
       ]
      }
     ],
     "prompt_number": 24
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-6,Page no 61"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "W1=40 #lb\n",
      "W2=30 #lb\n",
      "# as theta1=30 degrees,\n",
      "sin30=2**-1\n",
      "\n",
      "#Calculations\n",
      "#Summing the forces parallel to 30 degree plane\n",
      "T=W1*sin30\n",
      "theta=arcsin(T/W2)*(180/pi)\n",
      "\n",
      "#Result\n",
      "print'The tension in the cable is',round(T),\"lb\"\n",
      "print'The angle is',round(theta,1),\"degrees\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The tension in the cable is 20.0 lb\n",
        "The angle is 41.8 degrees\n"
       ]
      }
     ],
     "prompt_number": 33
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-8,Page no 62"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "F1=125 #N\n",
      "F2=200 #N\n",
      "F3=340 #N\n",
      "F4=180 #N\n",
      "x1=4 #m\n",
      "x2=3 #m\n",
      "x3=10 #m\n",
      "x4=15 #m\n",
      "x5=17 #m\n",
      "\n",
      "#Calculations\n",
      "Rb=(-F1*x1+F2*x2+F3*x3+F4*x4)/x5 #moment about point A\n",
      "Ra=(F1*(x1+x5)+F3*(x5-x3)+F2*(x5-x2)+F4*(x5-x4))/x5 #moment about point B\n",
      "\n",
      "#Result\n",
      "print'The reaction at A is',round(Ra),\"N\"\n",
      "print'The reaction at B is',round(Rb),\"N\"\n",
      "\n",
      "# The ans for B is off by 1 N"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The reaction at A is 480.0 N\n",
        "The reaction at B is 364.0 N\n"
       ]
      }
     ],
     "prompt_number": 5
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-9, Page no 63"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "F1=1000 #lb\n",
      "F2=1200 #lb\n",
      "F3=2000 #lb\n",
      "x1=1 #ft\n",
      "x2=7 #ft\n",
      "x4=2 #ft\n",
      "x3=6 #ft\n",
      "\n",
      "#Calculation\n",
      "#Equilibrium equations\n",
      "Rn=(F3*(x1+x2+x3)+F2*(x1+x2)+F1*x1)/(x1+x3+x2+x4) #Moment about point M\n",
      "Rm=(F1*(x2+x3+x4)+F2*(x3+x4)+F3*x4)/(x1+x2+x3+x4) #Moment about point N\n",
      "\n",
      "#Result\n",
      "print'The reaction at M is',round(Rm),\"lb\"\n",
      "print'The reaction at N is',round(Rn),\"lb\"\n",
      "\n",
      "#Decimal Accuracy causes discrepancy in answers between computation and textbook\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The reaction at M is 1787.0 lb\n",
        "The reaction at N is 2412.0 lb\n"
       ]
      }
     ],
     "prompt_number": 6
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-10, Page no 64"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "P=10 #kg\n",
      "g=9.81 #m/s**2\n",
      "\n",
      "#Calculations\n",
      "# equilibrium at fig b\n",
      "T1=P*g/2 #N\n",
      "# equilibrium at fig c\n",
      "T2=T1/2 #N\n",
      "#equilibrium at fig d\n",
      "P=T2\n",
      "\n",
      "#Result\n",
      "print'The force P is',round(P,1),\"N\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The force P is 24.5 N\n"
       ]
      }
     ],
     "prompt_number": 34
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-11, Page no 64"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "k=20 # lb/in\n",
      "w=20 # lb/ft\n",
      "x1=4 #ft\n",
      "x2=10 # ft\n",
      "x3=8 #ft\n",
      "x4=6 #ft\n",
      "x5=9 #ft\n",
      "F1=1920 #lb.rad\n",
      "F2=3360 #lb.rad\n",
      "\n",
      "#calculations\n",
      "theta=(w*x2*x5)*(F1*x3+F2*(x3+x4))**-1 #radians\n",
      "FB=F1*theta\n",
      "FC=F2*theta\n",
      "A=(w*x2)-FB-FC\n",
      "\n",
      "#Result\n",
      "print'The force in spring B is',round(FB,1),\"lb\"\n",
      "print'The force in spring C is',round(FC,1),\"lb\"\n",
      "print'The reaction at A is',round(A,1),\"lb up\"\n",
      "\n",
      " # The answer waries slightly due to decimal point discrepancy"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The force in spring B is 55.4 lb\n",
        "The force in spring C is 96.9 lb\n",
        "The reaction at A is 47.7 lb up\n"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-12, Page no 65"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "L=3.8 #m\n",
      "w=10 # kg/m\n",
      "P=1000 #N\n",
      "t=0.8 #m\n",
      "g=9.81 #m/s**2\n",
      "\n",
      "#Calculations\n",
      "Gf=L*w*g #N\n",
      "A=(P*L+Gf*L*0.5)/t #N Taking moment about point B\n",
      "B=(P*(L-t)+Gf*(0.5*L-t))/t #N Taking moment about point A\n",
      "\n",
      "#Result\n",
      "print'The reaction at point A is',round(A),\"N\"\n",
      "print'The reaction at point B is',round(B),\"N\"\n",
      "\n",
      "# The answers in the textbook are incorrect"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The reaction at point A is 5635.0 N\n",
        "The reaction at point B is 4263.0 N\n"
       ]
      }
     ],
     "prompt_number": 35
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-13, Page no 65"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "Wa=400 #lb\n",
      "Wb=200 #lb\n",
      "# as theta=30 degrees,\n",
      "sin30=2**-1\n",
      "\n",
      "#Calculations\n",
      "Ta=Wa*sin30 #lb\n",
      "Tb=Wb*sin30 #lb\n",
      "#Taking moment about point O\n",
      "P=(Tb*12+Ta*6)/24 #lb\n",
      "\n",
      "#Result\n",
      "print'The value of Ta is',round(Ta,3),\"lb\"\n",
      "print'The value of Tb is',round(Tb,3),\"lb\"\n",
      "print'The value of P is',round(P,3),\"lb\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The value of Ta is 200.0 lb\n",
        "The value of Tb is 100.0 lb\n",
        "The value of P is 100.0 lb\n"
       ]
      }
     ],
     "prompt_number": 37
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-15, Page no 66"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "import numpy as np\n",
      "\n",
      "#Initilization of variables\n",
      "F=np.array([5,2,3,1.5]) #kN Forces are defined as a cloumn matrix\n",
      "theta=(pi*np.array([90,60,45,80]))/180 #degrees angles are also defined as a column matrix\n",
      "d=np.array([2,6,13,17]) #distances from point C of each force\n",
      "c=np.array([17,15,11,4]) #distance form point D of each force\n",
      "#Calculations\n",
      "\n",
      "#Summing horizontal forces\n",
      "Ch=F[1]*cos(theta[1])-F[2]*cos(theta[2])+F[3]*cos(theta[3]) #kN \"which indidcates that Ch acts to the left instead of the assumed\"\n",
      "#Taking moment about point C\n",
      "D=(F[0]*d[0]+F[1]*sin(theta[1])*d[1]+F[2]*sin(theta[2])*d[2]+F[3]*sin(theta[3])*d[3])/d[3] #kN\n",
      "#Taking moment about point D\n",
      "Cv=(F[0]*c[1]+F[1]*sin(theta[1])*c[2]+F[2]*sin(theta[2])*c[3])/c[1]\n",
      "#Result\n",
      "\n",
      "print'The values of Ch,D and Cv are:',round(Ch,2),\"kN ,\",round(D,1),\"kN\",'and',round(Cv,2),\"kN\"\n",
      "\n",
      "# The ans of Cv is incorrect in textbook"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The values of Ch,D and Cv are: -0.86 kN , 4.3 kN and 6.84 kN\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-16, Page no 67"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "w=100 #N/m\n",
      "F1=200 #N\n",
      "M=500 #N.m\n",
      "Lw=2 #m\n",
      "#Distance from point A\n",
      "d=np.array([1,2,3,4,5]) #m\n",
      "#Distance from point B\n",
      "b=np.array([5,4,3,2,1]) #m\n",
      "\n",
      "#Calculations\n",
      "#Taking moment aboout point A\n",
      "Rb=(w*Lw*d[0]+F1*d[2]-M)/d[3] #N\n",
      "#Taking moment about point B\n",
      "Ra=(w*Lw*b[2]+F1*b[4]+M)/b[1] #N\n",
      "\n",
      "#Result\n",
      "print'The value of reaction at A is',round(Ra),\"N\"\n",
      "print'The value of reaction at B is',round(Rb),\"N\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The value of reaction at A is 325.0 N\n",
        "The value of reaction at B is 75.0 N\n"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-18, Page no 68"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "import numpy as np\n",
      "\n",
      "#Initilization of variables\n",
      "# The values of theta are=[60,60,45] degrees, therefore its values are as,\n",
      "costheta2=sqrt(2)**-1\n",
      "sintheta2=sqrt(2)**-1\n",
      "d=np.array([4.46,3.54,2]) #feet defined as a matrix\n",
      "F=400 #lb\n",
      "\n",
      "#Calculations\n",
      "#Taking moment about point A\n",
      "Re=(F*(8-d[1]))/8 #lb\n",
      "Ra=400-Re #lb here i have used the summation of forces in the vertical direction\n",
      "#Taking moment about point B\n",
      "Dv=(-F*3.644)*5.77**-1 #lb\n",
      "#Taking moment about point D\n",
      "Bv=(F*2.126)/5.77 #lb\n",
      "#Taking summation of forces in the vertical direction\n",
      "Cv=-223-Dv #lb\n",
      "#Taking moment about point D\n",
      "Ch=((223*d[2]*costheta2)-(Cv*5.173*costheta2))*(5.173*sintheta2)**-1 #lb\n",
      "#Taking summation of forces in the horizontal direction\n",
      "Dh=-Ch #lb\n",
      "#Taking sum of forces in horizontal direction\n",
      "Bh=-Dh #lb\n",
      "\n",
      "#Result\n",
      "print'The Floor reactions are'\n",
      "print'Ra=',round(Ra),\"lb up\"\n",
      "print'Re=',round(Re),\"lb up\"\n",
      "\n",
      "print'Pin reaction at C on CE are'\n",
      "print'Ch=',round(Ch,1),\"lb to right\"\n",
      "print'Cv=',round(Cv,1),\"lb up\"\n",
      "\n",
      "print'The pin reactions at B on AC are:'\n",
      "print'Bh=',round(Bh,1),\"lb to right\"\n",
      "print'Bv=',round(Bv,1),\"lb down\" \n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The Floor reactions are\n",
        "Ra= 177.0 lb up\n",
        "Re= 223.0 lb up\n",
        "Pin reaction at C on CE are\n",
        "Ch= 56.6 lb to right\n",
        "Cv= 29.6 lb up\n",
        "The pin reactions at B on AC are:\n",
        "Bh= 56.6 lb to right\n",
        "Bv= 147.4 lb down\n"
       ]
      }
     ],
     "prompt_number": 15
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 5.5-19, Page no 70"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Initilization of variables\n",
      "r=0.5 #m\n",
      "m=10 #kg\n",
      "g=9.81 #m/s**2\n",
      "# since theta=60 degrees,\n",
      "sin30=2**-1\n",
      "cos30=sqrt(3)*2**-1\n",
      "\n",
      "#Calculations\n",
      "#Due to symmetry the reaction will be shared by the structure\n",
      "A=m*g*r #N\n",
      "B=A #N\n",
      "#Vertical forces summed\n",
      "N1=m*g/(2*sin30) #N\n",
      "#Taking moment about point C\n",
      "T=(N1*0.866+B*sin30)*(1.5*cos30)**-1\n",
      "   \n",
      "#Result\n",
      "print'The value of N1 is',round(N1),\"N\"\n",
      "print'The value of T is',round(T,1),\"N\"\n",
      "\n",
      "# The ans for T is off by 0.1 N"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The value of N1 is 98.0 N\n",
        "The value of T is 84.3 N\n"
       ]
      }
     ],
     "prompt_number": 52
    }
   ],
   "metadata": {}
  }
 ]
}