All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim:-To Simulate the motion of Pendulum by solving second order O.D.E Objective:- To convert second order O.D.E to first order in order to use the bring the variables in ode45 format. Plotting the results of theta over the given time span. Using the marker command to create a pendulum Introduction:- Motion of the pendulum…
Amogh Jadhav
updated on 24 Mar 2020
Aim:-To Simulate the motion of Pendulum by solving second order O.D.E
Objective:-
Introduction:-
Motion of the pendulum is given by the following second order O.D.E
.......................................................Equation 1
where theta is the dependent variable and t is the independent variable;
In the above equation,
g = gravity in m/s2,
L = length of the pendulum in m,
m = mass of the ball in kg,
b=damping coefficient.
Assuming Inputs:-
L=1 metre,
m=1 kg,
b=0.05.
g=9.81 m/s2.
tstart=0 sec
tend=20 sec
ω(Angular Velocity)=F(θ,t)
ω=3 rad/sec at θ=0,t=0;
For converting Second order O.D.E into first order O.D.E we assume;
Θ = Θ1
dθ/dt =dΘ1/dt=Θ2
(d^2 θ)/(dt^2 )= dΘ2/dt
Substituting value of the Θ,dθ/dt,(d^2 θ)/(dt^2 ) in equation 1 we get;
dΘ2/dt+b/m*Θ2 +g/l sinΘ1=0
Stepwise Explanation:-
function [dtheta_dt]=ode_func(t,theta,b,g,l,m)
theta1=theta(1);
theta2=theta(2);
dtheta1_dt=theta2;
dtheta2_dt=-(b/m)*theta2-(g/l)*sin(theta1);
dtheta_dt=[dtheta1_dt;dtheta2_dt];
end
3.Variables x0,y0 are fixed at the origin.For loop brings different value of theta each time which gives the position of the variables x1,y1.
4. Plotting a straight line reference and then by using marker command making a pendulum bob at the end of the co-ordinates x1,y1.
5.M is array which contains images of the pendulum at various angle;this pictures are then used for making a animation by using the movie command.
The programme is written below:-
clear all
close all
clc
%Inputs
b=0.05;
g=9.81;
l=1;
m=0.1;
ct=1;
%intial condition
theta_0=[0;3];
%time interval
t_span=linspace(0,20,500);
%solve_ode
[t,results]=ode45(@(t,theta)ode_func(t,theta,b,g,l,m),t_span,theta_0);
figure(1)
plot(t,results(:,1));
figure(2)
for i=1:length(results(:,1));
Results=results(i,1);
x0=0;
y0=0;
x1=l*sin(Results);
y1=-l*cos(Results);
plot([-1.5 1.5],[0 0],[x0 x1],[y0 y1],x1,y1,\'-o\',\'markersize\',20,\'markerfacecolor\',\'y\')
axis ([-1.5,1.5,-1.5,1]);
pause(0.3);
M(ct)=getframe(gcf);
ct=ct+1;
end
movie(M)
videofile = VideoWriter(\'pendulum_animation.avi\',\'Uncompressed AVI\')
open(videofile)
writeVideo(videofile,M)
close(videofile)
Fig.Plot of Time vs Displacement which is getting damped
Youtube link for the animation is :-https://youtu.be/ZLNseDblUqY
Errors done: -
1.Error in typing axis array in which the start end point was selected as negative .
Conclusion:- By using a O.D.E solver simulated the motion of the pendulum and created animation of the its motion by defining input variables.
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Frequency Analysis of a rotating shaft
Aim:- To find out the critical frequencies of the shaft Objectives:- To create 3D model of rotating shaft To perform frequency analysis on the rotating shaft and find out the critical frequencies. Introduction:- For a rotating shaft there is a speed at which, for any small initial deflection, the centripetral force is…
26 Sep 2021 04:08 PM IST
Modelling and simulation of flow through a flowbench
Aim:- Modelling and Simulation of flow through flowbench and obtaining a plot of lift vs mass flow rate Introduction:- An Air flow bench is a device used for testing the internal aerodynamic qualities of an engine component and is related to the more familiar wind tunnel. It is…
08 Sep 2021 02:38 PM IST
Centrifugal pump design and analysis
Aim:- Analysis of Centrifugal pump and to obtain relation between pressure ratio and mass flow ratio Introduction:- Centrifugal pumps are used to transport fluids by the conversion of rotational kinetic energy to the hydrodynamic energy of the fluid flow. The rotational energy typically comes from an engine…
07 Sep 2021 05:45 PM IST
Flow over an airfoil
Aim:-To find flow over aerofoil by varying the angle of attack and find the drag force and corresponding lift force. Objective:- 1.NACA0017 airfoil to be modeled in solidworks using data from nasa site. Angle of attack is to be varied to 0,2,4,6,8,10 degree. 2.Lift and Drag forces for the corresponding angle of attack…
08 Dec 2020 06:24 AM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.