ํ•„ํ„ฐ ์ง€์šฐ๊ธฐ
ํ•„ํ„ฐ ์ง€์šฐ๊ธฐ

i tried to do this question it was hard please i need help

์กฐํšŒ ์ˆ˜: 1 (์ตœ๊ทผ 30์ผ)
fatima hamad
fatima hamad 2020๋…„ 4์›” 18์ผ
๋‹ต๋ณ€: David Hill 2020๋…„ 4์›” 18์ผ
  1. Plot The coefficient of static friction versus theta for [0, 180] for different values (five values) of ฮฉ > ฮฉ???.
ฮฉ??? = sqrt(g/r)
plot between coefficient of static friction in y-axis and theta for [0, 180] in x-axis for five angular velocity in the same plot.
coefficient of static friction in the given code is = x
This is the beginning of the code, can you please help in section two? thank you.
% Section 1 : To solve the two equations in term of cofficent of static
% friction & normal force.
% Variables naming:
% m: Mass of block A, kg.
% r: Radius of the drum, m.
% mu_s: Coefficient of static friction.
% N: Normal force, N.
% w = Angular velocity, rad/s.
% theta: Angular position, rad.
% g = Gravitational acceleration, m/s^2.
% x = mu_s
% y = N
clc
clear
syms theta w g m r x y
eqn1 = y-m*g*cos(theta)-m*r*w^2;
eqn2 = x*y-m*g*sin(theta);
[x,y] = solve(eqn1, eqn2)
% Section 2 : To plot coefficient of static friction vs theta for different angular speed
g = 9.81;
r = 0.7;
theta = (0:0.04:pi);Angspeed = sqrt(g/r);

๋‹ต๋ณ€ (1๊ฐœ)

David Hill
David Hill 2020๋…„ 4์›” 18์ผ
You said you wanted to plot vs. different angular speeds, but only one was provided.
g = 9.81;
r = .7;
theta = (0:0.04:pi);
w = sqrt(g/r);
mu_s=g*sin(theta)./(r*w^2 + g*cos(theta));%this is the equation that you determined
plot(theta,mu_s);

์นดํ…Œ๊ณ ๋ฆฌ

Help Center ๋ฐ File Exchange์—์„œ Nonlinear Dynamics์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ

ํƒœ๊ทธ

์ œํ’ˆ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by