Changing Length of Pendulum while it is in motion
조회 수: 7 (최근 30일)
이전 댓글 표시
Hi
I have seen many simulations of pendulums oscillating found on matlab. One such example can be found in this link. The link provides the code to simulate and visualise the oscillation of the pendulum by setting up different initial fixed parameters. I was wondering if it is possible to simulate the length of the rod, attached to the pendulum, changing while the pendulum is in motion( i.e the length of the rod should be able to increase/decrease such that it reaches the target length specified over a fixed period of time). This would also mean that the rate of change of the length of the rod can also be controlled.
Currently, using a ode45 solver, I am able to plot the path of the pendulum's oscillation. This is done through specifying the initial conditions, which are fixed. Hence, is there a way that the length of the rod attached to the pendulum be modified during the oscillation?
Thank you in advance!!!
답변 (2개)
Mischa Kim
2021년 1월 12일
Dear Yan Koon Ang,
this is possible. In the example you are referring to in your question you would have to make the time variable t available in the ode file and then you could do something like this:
function xdot = Equation(t,x)
% Set the input values in order to pass onto ode45
% [...]
L = x(5) * (1 + 0.5*t); % replace by whatever behavior/equation you need
댓글 수: 2
Mischa Kim
2021년 1월 12일
The first changes you need to make are in the Equation() function, as pointed out above. Just browsing through the example files in the link you provided you need to adapt the Anmiation() function accordingly:
% Position and Angular velocity
phi = y(1,:)';
dtphi = y(2,:)';
L = ivp(5)*(1 + 0.5*t); % replace by whatever behavior/equation you need
% To set the Range os Phase plane, time vs. depl plots
L is used further below to scale the axis. range is a scalar, L a vector, so, e.g.
range = 1.1*L(1);
There may be more changes to get you exactly what you need, but this should get you started.
참고 항목
카테고리
Help Center 및 File Exchange에서 Classical Mechanics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!