Ervin
Ervin
OBJECTIVE:
EQUIPMENT:
a. Reference books
b. Personal computer
PROCEDURES:
a. Choose your partner for this laboratory work. Your instructor will assign a
specific field/topic in civil engineering. Select one civil engineering problem
within the assigned topic that is solved using system of linear equations with
minimum of four equations (no repetition of problems).
b. Explain the concepts, theories, and/or laws involved in the problem and how
did you come up with the equations.
c. Solve the unknown values using one of the four numerical methods in solving
system of linear equations.
d. To verify your answers, solve the unknown values using MATLAB.
RESULTS: (use the format below)
(DISCIPLINE/BRANCH OF CE)
Problem:
A simple truss bridge is supported by two pin supports at points A and B. A vertical
load of 20 kN is applied at joint C. Determine the internal forces in members CD, DE,
and EF.
Image:
Discussion:
Solution:
1. Determine Reactions:
o Calculate the vertical reactions at supports A and B.
2. Cut Section:
o Pass a cutting plane through members CD, DE, and EF.
3. Analyze Section:
o Draw the free body diagram of the section to the left or right of the cut.
o Apply the equations of equilibrium (sum of forces in x and y directions,
and sum of moments) to solve for the unknown internal forces in
members CD, DE, and EF.
Note:
The direction of the internal forces (tension or compression) can be assumed.
If the calculated value is positive, the member is in tension; if negative, it is in
compression.
The choice of which side of the cut to analyze depends on which side
provides the simplest equations of equilibrium.
MATLAB Approach:
1. We define the truss properties like member lengths, applied load, and
reactions at supports A and B (calculated using equilibrium for the whole
truss).
2. We choose a section to analyze (here, to the left of CD-DE-EF).
3. We define vectors for the internal forces in CD and DE.
4. We create a free body diagram of the chosen section, showing the reactions,
applied load, and unknown internal forces.
5. We apply the equations of equilibrium:
o Sum of forces in y-direction to solve for F_DE(2).
o Moment balance about point D to solve for F_DE(1).
6. The code displays the calculated internal forces for CD and DE.
% Display results
disp('Internal forces (N):');
disp(['CD: ', num2str(F_CD)]);
disp(['DE: ', num2str(F_DE)]);