Force Dynamics of the Standing Calf Raiser (Jake Garner and Chad Wilson)

Introduction:

When the average man goes to the gym, all he has on his mind is making his biceps bulge a little more, or benching five pounds over and above his previous best, but when an engineer goes to the gym, he sees a prime opportunity to analyze a great example of a linkage and pulley system. Through the study of the dynamics of machinery, and utilization of the matrix method of analysis, an individual can derive mathematical equations defining force, position, velocity and acceleration with only the knowledge of a few of the linkage lengths and angles of interest. To demonstrate this method, a calf-raise machine found within the TTU Fitness Center was observed, measured, and analyzed to derive its given forces, position, velocity and acceleration at a certain point within its travel of function.

In regards to specifics, the mechanism was composed of a standard four bar linkage attached to a pulley system which channeled the force of a selected number of ten pound weights opposing the upward force exerted by the user’s body. By identify particular ground points, identifying the lengths of ten links, and dividing the mechanism into three separate loops from which position equations could be derived, the system was made possible for analysis.

The force analysis of the mechanism was achieved by dividing the system into seven components, creating free body diagrams on each of the defined components, and deriving force equations from the FBDs which solved for the force composition in both the x and y direction as well as computing the moment forces at a specific point on the component. This resulted in twenty one equations with twenty one unknowns. These equations were then organized in matrix form and ran through Matlab to derive our desired unknowns. The discussed analysis, methods, and calculations can all be seen in the below workspace.

Free Body Diagrams and Force Equations:

Member 1:

flickr:5265354719
(1)
\begin{align} \Sigma{F_{x}=F_{Ax}+F_{21x}=m_{1}a_{x1}} \end{align}
(2)
\begin{align} \Sigma{F_{y}=F_{Ay}+F_{21y}+F_{a}=m_{1}a_{y1}} \end{align}
(3)
\begin{align} \Sigma{M_{A}=F_{21y}(L_{2})+F_{a}(L_{1})=I_{1}\alpha_{1} \end{align}

Member 2:

flickr:5265961254
(4)
\begin{align} \Sigma{F_{x}=F_{12x}+F_{32x}+F_{42x}=m_{2}a_{x2}} \end{align}
(5)
\begin{align} \Sigma{F_{y}=F_{12y}+F_{32y}+F_{42y}=m_{2}a_{y2}} \end{align}
(6)
\begin{align} \Sigma{M_{12}=F_{23x}(L_{3a})+F_{42x}(L_{3a}+L_{3b})=I_{2}\alpha_{2} \end{align}

Member 3:

flickr:5265354765
(7)
\begin{align} \Sigma{F_{x}=F_{Bx}+F_{23x}=m_{3}a_{x3}} \end{align}
(8)
\begin{align} \Sigma{F_{y}=F_{By}+F_{23y}=m_{3}a_{y3}} \end{align}
(9)
\begin{align} \Sigma{M_{B}=F_{23y}(L_{4})=I_{3}\alpha_{3} \end{align}

Pulley:

flickr:5265961300
(10)
\begin{align} \Sigma{F_{x}=F_{24x}=m_{4}a_{x4}} \end{align}
(11)
\begin{align} \Sigma{F_{y}=-T_{2}-T_{1}+F_{24y}=m_{4}a_{y4}} \end{align}
(12)
\begin{align} \Sigma{M_{24}=T_{2}(r_{1})-T_{1}(r_{1})=I_{4}\alpha_{4} \end{align}

Cable 1:

flickr:5265354793
(13)
\begin{align} \Sigma{F_{y}=F_{c}+T_{2}=m_{5}a_{y5}} \end{align}

Cable 2:

flickr:5265354813
(14)
\begin{align} \Sigma{F_{y}=F_{7}+T_{1}=m_{6}a_{y6}} \end{align}

Mass:

flickr:5265354835
(15)
\begin{align} \Sigma{F_{y}=F_{7}-mg=m_{7}a_{y7}} \end{align}

Additional Eq's

(16)
\begin{equation} {F_{12y}={F_{21y}} \end{equation}
(17)
\begin{equation} {F_{12x}={F_{21x}} \end{equation}
(18)
\begin{equation} {F_{32x}={F_{23x}} \end{equation}
(19)
\begin{equation} {F_{32y}={F_{23y}} \end{equation}
(20)
\begin{equation} {F_{42x}={F_{24x}} \end{equation}
(21)
\begin{equation} {F_{42y}={F_{24y}} \end{equation}

Force Matrix:

flickr:5265354869

Matlab Code:

clc
clear all
dtr = pi/180;
%Inputs all measurements in inchs
r1 = 11;
r2 = 20;
r3a = 11;
r3b = 2;
r4 = 20;
r5a = 2.5;
r5b = 2.5;
r7 = 10;
r9 = 44.01;
r11 = 50.16;
for rp = 40
for r8 = 1:1:10%%%%%%%%%%%%%%%%%%%%
r8_dot = .1;%%%%%%%%%%%%%%%%
r8_ddot = .1;%%%%%%%%%%%%%%%
r6 = 22-r8;
r10 = r8 + 5;
theta1 = 90*dtr;
theta5a = 90*dtr;
theta5b = theta5a;
theta6 = 90*dtr;
theta7 = 90*dtr;
theta8 = 90*dtr;
theta9 = 96.48*dtr;
theta10 = 90*dtr;
theta11 = 116.06*dtr;
%%%%Inputing masses all units in lbs
%%%%%%%Moment of intertai calculations
I1 = (1/12)*r2*2^2;
I2 = (1/12)*2*r3a^2;
I3 = (1/12)*r4*2^2;
I4 = (pi*r5a^4)/4;
m5 = .2;
m6 = .2;
m7 = .2;
%%Input of Weight
for w = 1;
%Posistion
%Loop 3
rkx1 = -r5a*cos(theta5a)-6*cos(theta6)-r7*cos(theta7)-r8*cos(theta8)-r11*cos(theta1);
rky1 = -r5a*sin(theta5a)-6*sin(theta6)-r7*sin(theta7)-r8*sin(theta8)-r11*sin(theta1);
rk1 = sqrt(rkx1^2+rky1^2);
thetak1 =atan2(rky1,rkx1);
a = r4^2 - r3b^2+rk1^2+2*r3b*rk1*cos(thetak1);
b = -4*r3b*rk1*sin(thetak1);
c = r4^2 - r3b^2-rk1^2-2*r3b*rk1*cos(thetak1);
if ((b^2-4*a*c)>=0)
flag = 0;
branch =1;
t = (-b + branch*sqrt(b^2-4*a*c))/(2*a);
theta3br = 2*atan(t);
theta3b = theta3br/dtr;
theta4r = atan2( (-r3b*sin(theta3b)-rk1*sin(thetak1))/r4 , …
(-r3b*cos(theta3b)-rk1*cos(thetak1))/r4);
theta4 = theta4r/dtr;
end
theta3a = theta3b;

theta2 = acos((-r1*cos(theta1) - r3a*cos(theta3br)-r4*cos(theta4r))/r2);

%%%Velocity Analysis
r8_dot;
r6_dot = r8_dot;
r10_dot = r8_dot;

A1 = [-r4*sin(theta4r) -r3b*sin(theta3br);
r4*cos(theta4r) r3b*cos(theta3br)];

b1 = [-r6_dot*cos(theta6)-r8_dot*cos(theta8);
-r6_dot*sin(theta6)-r8_dot*sin(theta8)];

V1 = inv(A1) * b1;

theta4_dot = V1(1);
theta3b_dot = V1(2);
theta3a_dot = theta3b_dot;
theta2_dot = (r3a*theta3a_dot*sin(theta3a) + r4*theta4_dot*sin(theta4))/(-r2*sin(theta2));

%%%Aceleration Analysis

r6_ddot = r8_ddot;
r10_ddot = r8_ddot;

A2 = [ -r4*sin(theta4r) -r3b*sin(theta3br);
r4*cos(theta4r) r3b*cos(theta3br)];

b2 = [-r6_ddot*cos(theta6)-r8_ddot*cos(theta8)+theta4_dot^2*r4*cos(theta4r)+theta3b_dot^2*r3b*cos(theta3br);
-r6_ddot*sin(theta6)-r8_ddot*sin(theta8)+theta4_dot^2*r4*sin(theta4r)+theta3b_dot^2*r3b*sin(theta3br)];

Accel = inv(A2)*b2;

theta4_ddot = Accel(1);
theta3b_ddot = Accel(2);
theta3a_ddot = theta3b_ddot;
theta2_ddot = (theta3a_ddot*r3a*sin(theta3br)+theta3a_dot^2*r3a*cos(theta3br)…
+theta4_ddot*r4*sin(theta4r)+theta4_dot^2*r4*cos(theta4r)…
+theta2_dot^2*r2*cos(theta2))/(-r2*sin(theta2));

%Force Analysis

A6 = [1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
0 0 0 r2 rp 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0;
0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0;
0 0 0 0 0 0 0 r3a 0 r3a+r3b 0 0 0 0 0 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 r4 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 r5a -r5b 0 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1;
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;
0 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
0 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0;
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0];

b6 = [0;0;I1*theta2_ddot;0;0;I2*theta3a_ddot;0;0;I3*theta4_ddot;0;0;I4*theta4_ddot;m5*r10_ddot;m6*r6_ddot;(m7*r6_ddot)+w;…
0;0;0;0;0;0];

F = inv(A6)*b6;

F_ax = F(1)
F_ay = F(2)
F_21x = F(3)
F_21y = F(4)
F_a = F(5)
F_12x = F(6)
F_12y = F(7)
F_32x = F(8)
F_32y = F(9)
F_42x = F(10)
F_42y = F(11)
F_bx = F(12)
F_by = F(13)
F_23x = F(14)
F_23y = F(15)
F_24x = F(16)
F_24y = F(17)
T1 = F(18)
T2 = F(19)
F_c = F(20)
F_7 = F(21)
plot(r8,abs(F_a),'*g')
xlabel('Height Lifted (in)')
ylabel('Force Applied on the bar (lbs)')
title('Height Lifted vs Force Applied')
hold on
end
end
end

Results:

flickr:5267023672

Figure 1 (Height Lifted vs. Force Applied)

The graph shows that as the operator lifts the weights, there is parabolic increase in force needed to raise the desired weight. This can be seen from the position/velocity/acceleration equations in their polar form.

flickr:5266417581

Figure 2 (Weight Lifted vsForce Applied)

This figure shows that as you increase the weight it takes more force from the operator to raise the bar. This is not a one to one ratio because of the added weight of the other machine components.

flickr:5266417771

Figure 3 (Length of Shoulder Bar vs. Force Applied)

This graph shows that as you increase the length of the shoulder bar from 40in to 60in the force required to raise the weight is decreased exponentially. This can be proved once again if we look at the position/velocity/acceleration terms they have exponentials in their polar formats.