summaryrefslogtreecommitdiff
path: root/3131/CH5/EX5.11/5_11.sce
blob: 672779ac129c0fa5a6908b2d41f1a8d21a3f8c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clear all; clc;
disp("Ex 5_11")
disp("Free body diagram is as shown in fig 5-22b")
a=0.7
b=0.4
c1=atan(a/b)
c=c1*180/%pi
printf('\n\n Theta = %0.1f degrees', c)
disp("Summing forces in X-direction:")
disp("F_A*cos60.3-F*cos45+400=0   ... (1)")
disp("Summing forces in Y-direction:")
disp("F_A*sin60.3-F*sin45=0   ... (2)")
disp("Solving (1) and (2) simulatneously")
disp("F_A = 1.07 kN")
disp("F = 1.32 kN")