Assignment 3 Print View
Assignment 3 Print View
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 1/12
08.03.2023, 11:58 Assignment Print View
−−
− −
−−
gm gc'
v = √ tanh (√ t)
c' m
where g = 9.81 m/s2. For a parachutist with a second-order drag coefficient c' = 0.25 kg/m,
compute the mass m so that the velocity is v = 36 m/s at t = 7 s. Use Excel, MATLAB, or Mathcad
to determine m.
References
−−
− −
−−
gm gc'
v = √ tanh (√ t)
c' m
where g = 9.81 m/s2. For a parachutist with a second-order drag coefficient c' = 0.25 kg/m,
compute the mass m so that the velocity is v = 36 m/s at t = 7 s. Use Excel, MATLAB, or Mathcad
to determine m.
Explanation:
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 2/12
08.03.2023, 11:58 Assignment Print View
clear
format long; format compact
hold off
g=9.81;c=0.25;v=36;t=7;%8e
f=@(m) sqrt(g*m/c).*tanh(sqrt(g*c./m)*t)-v;
[mass fmass]=fzero(f,40)
xmin = 25;
xmax =50;
x = linspace(xmin,xmax,200);
y = f(x);
set(gcf,'Position',[400 400 800 400])
plot(x,y)
hold on
plot(mass,0,'mo','MarkerFaceColor','m')
set(gca, 'XAxisLocation','origin','YAxisLocation','origin',...
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 3/12
08.03.2023, 11:58 Assignment Print View
'XMinorTick','on')
xlabel('mass, m (kg) \rightarrow')
ylabel('f(x) \rightarrow')
title('Graphical root finding $f(x) = \sqrt{gm/c}*\tanh{(\sqrt{gc/m}*t)} -
v$',...
'Interpreter','LaTex')
shg
saveas(gcf,'ch7p12.jpg')
>> ch7p12
mass =
36.782934927017131
fmass =
0
References
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 4/12
08.03.2023, 11:58 Assignment Print View
2 3
f (x) = −2 + 6.2x − 4x + 0.7x
x = 0.4357
x=2
x = 3.2786
References
2 3
f (x) = −2 + 6.2x − 4x + 0.7x
x= 0.4357 ± 2%
x= 2 ± 2%
x= 3.2786 ± 2%
Explanation:
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 6/12
08.03.2023, 11:58 Assignment Print View
In structural engineering, the secant formula defines the force per unit area, P/A, that causes a
maximum stress σm in a column of given slenderness ratio L/k.
P σm
=
A ec P L
1+( )sec(0.5√ ( ))
2 EA k
k
where ec/k2 = the eccentricity ratio and E = the modulus of elasticity. If for a steel beam, E =
200,000 MPa, ec/k2 = 0.4, and σm = 250 MPa, compute P/A for L/k = 50. Recall that sec x = 1/cos
x. Use MATLAB.
References
In structural engineering, the secant formula defines the force per unit area, P/A, that causes a
maximum stress σm in a column of given slenderness ratio L/k.
P σm
=
A ec P L
1+( )sec(0.5√ ( ))
2 EA k
k
where ec/k2 = the eccentricity ratio and E = the modulus of elasticity. If for a steel beam, E =
200,000 MPa, ec/k2 = 0.4, and σm = 250 MPa, compute P/A for L/k = 50. Recall that sec x =
1/cos x. Use MATLAB.
Explanation:
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 7/12
08.03.2023, 11:58 Assignment Print View
250 P
f (P /A) = 0.4
−
A
1+
⎛ P ⎞
⎜ ⎟
⎜ A ⎟
cos⎜25 ⎟
⎜ ⎷ 200,000 ⎟
⎜ ⎟
⎝ ⎠
clear
f = @(P_A) 250./(1+0.4./cos(25.*sqrt(P_A./200000)))−P_A;
P_A = fzero(f,163)
The result is
>> ch8p16
P_A =
163.4429
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 8/12
08.03.2023, 11:58 Assignment Print View
The volume V of liquid in a spherical tank of radius r is related to the depth h of the liquid by
2
πh (3r−h)
V =
3
Determine h, given r = 0.9 m and V = 0.6 m3. Use the graphical method.
References
The volume V of liquid in a spherical tank of radius r is related to the depth h of the liquid by
2
πh (3r−h)
V =
3
Determine h, given r = 0.9 m and V = 0.6 m3. Use the graphical method.
Explanation:
2
πh (3(0.9)−h)
f (h) = − 0.6 = 0
3
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJwc… 9/12
08.03.2023, 11:58 Assignment Print View
NOTE: This is a multi-part question. Once an answer is submitted, you will be unable to return to this
part.
References
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJw… 10/12
08.03.2023, 11:58 Assignment Print View
x1= 3.25
x2= –1.5
x3 = –3.25
x1= –1.25
x2= –0.75
x3 = 1.25
✓ x1= –0.25
x2= –0.5
x3 = 2.25
x1= 2.25
x2= –1.5
x3 = –0.25
⎢ 6 2 2 2 ⎥
⎣ ⎦
−3 4 1 1
References
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJw… 11/12
08.03.2023, 11:58 Assignment Print View
Three masses are suspended vertically by a series of identical springs where mass 1 is at the top
and mass 3 is at the bottom. If g = 9.81 m/s2, m1 = 2 kg, m2 = 3 kg, m3 = 2.5 kg, and the k’s = 10
kg/s2, solve for the displacements x.
✓ x1 = 7.358
x2 = 12.753
x3 = 15.206
x1 = 1.862
x2 = 4.784
x3 = 8.027
x1 = 3.392
x2 = 10.193
x3 = 13.829
x1 = 5.430
x2 = 10.043
x3 = 17.839
The position of the three masses can be modeled by the steady-state force balances.
0 = k ( x 2 − x 1 ) + m 1 g − kx 1
0 = k (x 3 − x 2 ) + m 2 g − k (x 2 − x 1 )
0 = m 3 g − k (x 3 − x 2 )
Then by substituting the values of the parameters into a matrix, the system is solved for 7.3575,
12.7530 and 15.2055.
References
https://ezto.mheducation.com/api/caa/activity/C15Print?jwt=eyJhbGciOiJSUzI1NiJ9.eyJlbnZpcm9ubWVudCI6InByb2QiLCJpc3MiOiJlenQiLCJw… 12/12