summaryrefslogtreecommitdiff
path: root/3862/CH3/EX3.8/Ex3_8.sce
blob: acf2e8f75b65496bea45bcc308569e1e5e34466a (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
clear
//

//Each load is 10 kN and all triangles are equilateral with sides 4 m.

//variable declaration

PB=10.0
PD=PB
PF=PD
AB=4.0
BC=AB
AC=BC
BD=BC
CD=BC
DE=CD
CE=CD
DF=DE
EF=DE
EG=DE
FG=EF
//Take section (A)–(A), which cuts the members FH, GH and GI and separates the truss into two parts. 
AG=AC+CE+EG
BG=CE+EG+AC/2
DG=EG+CE/2
FG1=EG/2
RA=PB*7/2
RO=RA
theta=60.0*%pi/180
//moment at point G
FFH=(RA*AG-PB*BG-PD*DG-PF*FG1)/(FG*sin(theta))
printf("\n FFH= %0.4f KN (Comp.)",FFH)

//sum of all vertical forces & sum of all horizotal forces is zero

FGH=(RA-PB-PD-PF)/(sin(theta))
printf("\n FGH= %0.4f KN (Comp.)",FGH)

FGI=FFH+FGH*cos(theta)
printf("\n FGI= %0.4f KN  (Tensile)",FGI)