summaryrefslogtreecommitdiff
path: root/3131/CH6/EX6.4/6_4.sce
blob: 70342c95312e538e67aad0d46c97bb4329dcac7f (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
clear all; clc;
disp("Ex 6_4")


// At joint G:
disp("At Joint G:")
F_GC=0// Summing forces along Y axis
printf('\n F_GC = %0.0f \n',F_GC)

// At joint D:
disp("At Joint D:")
F_DF=0// Summing forces along X axis
printf('\n F_DF = %0.0f \n',F_DF)


// At joint F:
disp("At Joint F:")
F_FC=0// Summing forces along Y axis
printf('\n F_GC = %0.0f \n',F_FC)

// At joint B:
disp("At Joint B:")
F_BH=2// Summing forces along Y axis
printf('\n F_BH = %0.0f kN (C)\n',F_BH)