A sphere with a mass m is resting against smooth surfaces according to the figure above. Determine the normal force at A and B.
Solution
Welcome to the swamp of angles (vinkelträsket)! Insert a Cartesian coordinate system i the center of the sphere and create a free body diagram for the sphere!
Since the surfaces are smooth they can only give rise to normal forces. We thus have contact forces at A and B, as well as a weight force which acts on the center of the sphere. Since all forces are directed through the center of the sphere, force equilibrium will be enough to solve for all unknowns.
∑Fi=0
clear
syms F_A F_B m g
We can handle the swamp of angles in a systematic way. Define the angles from the x-axis ([1,0]) positively counter-clockwise.
We can thus create a unit vector as a function of the angle θ:
Now we can get the direction of FA by starting at 180∘ and rotating "backwards" 75∘ and then again 90∘ to point in the direction we see in the figure.
Matlab sometimes cannot simplify expressions other than approximating it with a fraction. This is accurate but not readable, for this reason we can display the answer as a decimal number with an arbitrary precision, here we choose two significant numbers.
vpa(FFA,2)
⎝⎛0.97FA0.26FA0⎠⎞
Then we have FB:
FFB = F_B*e(30+90)
⎝⎛−2FB23FB0⎠⎞
vpa(FFB,2)
⎝⎛−0.5FB0.87FB0⎠⎞
The weight vector is simply
FG = [0;-m*g;0]
⎝⎛0−mg0⎠⎞
Equilibrium stated that:
ekv = FFA+FFB+FG == 0;
The above expression is exact, but hard to read, so we display the decimal form of it using vpa and then we can analyze the equation system.
Now we can send the equation to the solver and solve for FB and FA.
[F_A,F_B] = solve(ekv,[F_A,F_B]);
We simplify the expression
F_A = vpa(simplify(F_A),2)
0.52gm
F_B = vpa(simplify(F_B),2)
1.0gm
FB is simplified to mg!
The conclusion is that FB takes the whole wight while FA only takes about half of the spheres weight. This seems reasonable judging from the figure and FBD.
For a complete analysis we can rotate the whole system 30∘ clockwise such that FB is pointing straight up and FA thus is zero. Try it to confirm.
Conclusion: FB is bigger than FA because the point B is higher. If both angles had been 30∘ then the wire forces would have been the same and equal to mg.
Determine the wire tensions as a function of the distance d. Plot both forces and analyze the results!
Solution
In contrast to the previous two academic examples, forces in real life are typically always going along a line of action and are defined from one point to another. In this example, we have forces along a line which is hung up between three points.
We start by inserting a coordinate system according to the FBD. Then positional vectors.
OA=[−10,0,0]T,OB=[20,0,0]T,OR=[0,−d,0]T
clear
syms d positive
We create a variable d and set it to be positive, this will simplify the expressions. See for yourself, try and experiment!
OA = [-10, 0, 0].'; OB = [20, 0, 0].'; OR = [0, -d, 0].';
Then wire forces which act from point R toward points A and B.
syms v FA FB
RA = OA-OR;
RB = OB-OR;
FFA = FA*RA/norm(RA)
figure; hold on
fplot(FA,[1,20],'Color','r','LineWidth',2,'DisplayName','F_A')
fplot(FB,[1,20],'Color','b','LineWidth',2,'DisplayName','F_B')
legend
ylim([0,200])
Here we can see that the wire forces are tending towards infinity as d→0. This is intuitive. Again, we can set the distances such that the weight hangs symmetrically and check the feasibility of our model.
We end with a limit as d→∞.
vpa(limit([FA,FB],d,inf),3)
(66.733.3)
Conclusion: FA→66.7N and FB→33.3N with large values for d.
Determine the wire force and the reaction forces in the Origin if the homogeneous rod has a mass of m kg and is free to rotate at O.
Solution
Insert a coordinate system and positional vectors to all important points. Use the defined points to describe new points. We want to vary the position of B along the x-axis as well as the slope, θ of the rod.
clear
syms theta b
e = @(theta)[cosd(theta),sind(theta),0].';
OA = 1.5*e(theta);
OB = [-b, 0, 0].';
OG = OA/2;
As θ approached 90° the rod is vertical and all the weight is directly above the support, thus the weight vector and reaction vector cancel out, no force is acting in the horizontal direction and the wire force is thus zero. Makes perfect sense.
A rectangular board with a mass of mkg is carried in a horizontal position according to the figure above.
Create a FBD of the board, the people only exsert a force in the positive z-direction. Determine how much each person is lifting and which one of them is lifting in the least. Do you even lift bro?
Solution
Start the usual way, add a coordinate system and forces, create a FBD.
clear
OA = [0.360, 0, 0].'; OB = [0.720, 0.480+0.720, 0].';
OC = [0.720+1.680, 0.480, 0].'; OG = [0.720+1.680, 0.480+0.720,0].'/2;
The forces
syms FAz FBz FCz mg
FA = [0, 0, FAz].'; FB = [0,0,FBz].'; FC = [0,0,FCz].'; FG = [0,0,-mg].';
A light crane as rigged according to the figure above. Determine, as a function of x, the reaction forces in the x-direction an the two wire forces. The crane is free to rotate about the Origin. The hook-carriage can travel along the x-axis.
Determine the minimum value of FO/FL where FO is the magnitude of the reaction force in O and FL is the magnitude of the load at the carriage.
Solution
ΣF=0ΣMO=0
FBD with a inserted coordinate system and forces.
clear
OA = [6,0,0].'; OB = [0, -2, 3].'; OC = [3, 0, 0].';
OD = [0, 4, 0].';
syms x real positive
OL = [x, 0, 0].';
Force vectors in O, wires, etc.
syms F_L positive real
syms FA FC FOx FOy FOz
AB = OB-OA;
CD = OD-OC;
FFA = FA*AB/norm(AB)
⎝⎛−76FA−72FA73FA⎠⎞
FFC = FC*CD/norm(CD)
⎝⎛−53FC54FC0⎠⎞
FFO = [FOx, FOy, FOz].';
FFL = [0, 0, -F_L].';
Set up the force and moment equations and solve for the unknowns.
Finally we compute FO/FL. Studying a model of a moving load, e.g., a car that drives over a bridge, is very common for engineers. The picture of various loads as a function of the loads position is called the influence line diagram. Here is such a diagram