blob: 1768197a8dec8cae5a5258c20cd2d89101818e81 (
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
|
clear
//
//variable declaration
PB=20.0 //loading at B,KN
PC=30.0 //loading at C,KN
PD=40.0 //loading at D,KN
PA=60.0 //loading at E,KN
AB=1.0
BC=2.0
CD=1.0
//length are in m
// Let x and y axes be selected
//sum of vertical Fy & sum of horizontal forces Fx is zero
//Assume direction of Fx is right
//Assume direction of Fy is up
Rx=0
Ry=PA+PB+PC+PD
R=sqrt((Rx**2)+(Ry**2))
printf("\n R= %0.2f KN",R)
//Taking clockwise moment as positive,
//sum of moment at A
MA=(0)*PA+(AB)*PB+PC*(AB+BC)+PD*(AB+BC+CD)
printf("\n MA= %0.2f KN-m",MA)
// The distance of resultant from A is,
x=MA/R
printf("\n x= %0.1f m",x)
|