You are on page 1of 2

Example Static Force Analysis

- Problem is from Engineering Mechanics Statics, 5th Edition, Meriam


- Sample Problem 3/5 on page 143 (shown on page-2 of this doc)

Unit Vectors
⎡1⎤ ⎡0⎤ ⎡0⎤
i≔ 0 j≔ 1 k≔⎢0⎥
⎢ ⎥ ⎢ ⎥
⎢⎣ 0 ⎥⎦ ⎢⎣ 0 ⎥⎦ ⎢⎣ 1 ⎥⎦

Position Vectors Applied Load


rAG ≔ −1 ⋅ i − 3 ⋅ j + 1.5 ⋅ k W ≔ −1962 ⋅ k
rAB ≔ −2 ⋅ i − 6 ⋅ j + 3 ⋅ k

Method-1) Using Solve Evaluation with Bx and By as Variables


MomentSum ⎛⎝Bx , By⎞⎠ ≔ rAB ⨯ ⎛⎝Bx ⋅ i + By ⋅ j⎞⎠ + rAG ⨯ W = 0 ⋅ i + 0 ⋅ j + 0 ⋅ k

⎡ 5886 − 3 ⋅ By ⎤ ⎡ 0 ⎤ solve , B , B
x y
MomentSum ⎛⎝Bx , By⎞⎠ → ⎢ 3 ⋅ Bx − 1962 ⎥ = ⎢ 0 ⎥ ―――― → [ 654 1962 ]
⎢ ⎥ ⎢ ⎥
⎣ 6 ⋅ Bx − 2 ⋅ By ⎦ ⎣ 0 ⎦

Method-2) Using Solve Evaluation with Bx and By as Variables within Fuction B

Reaction Load
B ⎛⎝Bx , By⎞⎠ ≔ Bx ⋅ i + By ⋅ j

MomentSumTest (B) ≔ rAB ⨯ (B) + rAG ⨯ W = 0 ⋅ i + 0 ⋅ j + 0 ⋅ k

The following gives the same symbolic evaluation as Method-1 (good) but then
a numeric result is not returned when calling the "solve" routine (bad).
⎡ 5886 − 3 ⋅ By ⎤ ⎡ 0 ⎤ solve , B , B
x y
MomentSumTest ⎛⎝B ⎛⎝Bx , By⎞⎠⎞⎠ → ⎢ 3 ⋅ Bx − 1962 ⎥ = ⎢ 0 ⎥ ―――― → undefined
⎢ ⎥ ⎢ ⎥
⎣ 6 ⋅ Bx − 2 ⋅ By ⎦ ⎣ 0 ⎦

The following doesn't work at all.


solve , Bx , By
MomentSumTest (B) → ? ―――― →?

Method-3) Using "lsolve" - Note that this doesn't present / read as well as method 1 & 2

⎡ 0 −3 ⎤ ⎡ −5886 ⎤ ⎡ 654 ⎤
M≔⎢3 0 ⎥ v ≔ ⎢ 1962 ⎥ lsolve (M , v) = ⎢ 3 ⎥
⎢⎣ 6 −2 ⎥⎦ ⎢⎣ 0 ⎥⎦ ⎣ 1.962 ⋅ 10 ⎦

Created with PTC Mathcad Express. See www.mathcad.com for more information.
Created with PTC Mathcad Express. See www.mathcad.com for more information.

You might also like