Linear System of Equations.

justastupidperson

New member
Joined
Sep 6, 2012
Messages
1
This is my first post here so im sorry if i do anything wrong...
Okay here goes. i have no idea how to answer this. im very sorry for troubling you guys and im very grateful to anyone who would answer this... thanks. :))

The instruction is to set up a matrix then solve the linear equation using Gauss-Jordan Elimination Method and Gaussian Elimination.
i only need help in setting up the matrix or getting the equations for the matrix. i try to implement Gauss-Jordan and Gaussian elimination on my own... this is kind of a long one. thank you!!!

Here's the problem:

The Republic United Steel Truss (RUST) division has already began manufacturing steel beams
for a customer Monolithic Engineering Steel Structures (MESS). They have delivered some
bundles of the beams to MESS, which were used in the construction of the Unduly Gigantic
Hanger (UGH).


MESS is suing RUST's management because several UGHs shown signs of severe fatigue. The
complaint claims that the beams produced by RUST are at faults. RUST maintains that the beams
were made to proper specification and believes that the signs seen were due to the fact that MESS
constructed UGHs beyond the written specification.


According to the complaints filed by MESS, the UGH is constructed with 27 beams connected at 11
joints. MESS has specified that each beam is required to withstand extension forces of up to 20 tons
and compressive forces of up to 17 tons without fatigue failure.


The specifications for the UGH are contained in the following tables. The first table contains the
coordinates of the joints. For example, joint 8 is at point (7.20, 0.00, 5.54) relative to the origin,
which is joint 1.


Jointx y z
10.000.000.00
26.502.150.00
36.50-2.150.00
4-1.000.005.54
54.101.635.54
64.10-1.635.54
77.203.265.54
87.200.005.54
97.20-3.265.54
100.500.007.83
119.860.006.54

Figure 1. Coordinates of the joints


The second table below contains the connection information, which in this case is given by a
number of beams, together with the two joints they connect, e.g. Beam 3 connects joint 1 and 6:

BeamJoint1Joint2
114
215
316
425
527
628
738
839
936
1045
1146
1256
1357
1478



BeamJoint1Joint2
1558
1668
1789
1869
19410
20510
21710
22810
23910
24610
251011
26711
27911
To find the forces on each of the beams, use the equations expressing the idea that the forces on the
beams at each joint must balance the applied load, The equations can be written out as follows. The
equation for the x component of the force at joint j is:

(1) Σ
fm cos(j;k;x) = -loadj,x


where the sum is over all beams m which connect to joint j and where k is the joint which is
connected to j and m. The quantity fm is the force on the beam m, which you are to determine and
cos(j;k;x) is the cosine of the angle between the x direction and the beam connecting joints j and k.
The direction cosine is computed as:

(2) cos (j;k;x)=(x(k)−x(j)) /dist(j,k)


where dist(j,k) is the distance between joints j and k.
The equations for the y and z components of the force are similar to (1) and (2) with the x replaced
by y and z. These equations give 33 equations (3 equations for each 11 joints or for the 27 forces on
the beam, fm). Six equations are eliminated from the system to account for the UGH being secured
to the ground. For joint 1, remove the equations for the y and z and for both joints 2 and 3 remove
the x and z equations. Thus, we obtain 27 equations for the 27 unknowns. The load applied to the
joint 11 has components (0.0, 1.0, -10.0).


Solve this linear system of equations to determine the forces on UGH given the load on joint 11. Set
up the matrix from the data and call the appropriate routines to obtain the forces. The forces are
compression forces if they are negative and extension forces if positive. Check if the forces on the
4 beams exceed those specified by MESS. Hint: cos(j;k;x) = -cos(k;j;x)
 
That does seem to be an excellent problem. What have you done to solve it.

Note: If you say, "I have no idea," I will become aggitated and tell you that you are in the wrong class or you haven't been paying attention.
 
Some thoughts:

By the nature of the problem statement, which gives no beam I values and speaks only in terms of tension and compression loads (as opposed to bending moment loads), we must assume that all joints are "pinned" as opposed to "fixed." That means that they carry no bending moments and the joints do not react or transmit any bending moments. All beams are in simple tension or compression (or carry no load).

Look at the forces applied at the top of the structure. Attempt to determine the necessary reactions at the three base points of the structure (joints 1, 2, and 3). If that can be accomplished, one might be able to next determine the loads in the beams connected to those base points.

This approach allows us to break the problem down into smaller "bites". We might not need to solve all 27 equations at once. We might be able to solve a few at a time and feed those results into the next sets of equations corresponding to the various joints.

Just one approach...
 
Top