All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: To evaluate the motion of simple pendulum by solving ODE using MATLAB Theory: In Engineering, ODE is used to describe the transient behavior of a system. A simple example is a pendulum. The way the pendulum moves depends on the Newtons second law. When this law is written down, we get a second order Ordinary Differential…
Yogesh Prajapati
updated on 17 Jun 2020
Aim: To evaluate the motion of simple pendulum by solving ODE using MATLAB
Theory:
In Engineering, ODE is used to describe the transient behavior of a system. A simple example is a pendulum. The way the pendulum moves depends on the Newtons second law. When this law is written down, we get a second order Ordinary Differential Equation that describes the position of the "ball" w.r.t time.
Consider a pendulum with ball of mass m attached to the end string of length L with other end being fixed.
where,
θ = Angular Displacement
g = Gravitational Acceleration
t = time
b = Damping Coefficient
For solving ODE using MATLAB, higher order differential equations needs to converted into a set of single order differential equations.
A second order differential equation should be convereted into two single order differential equations. This is done by considering,
θ=θ1
dθ1dt=θ2
and this leads to following differential equations,
dθ1dt=θ2
dθ2dt=−(bm)⋅θ2−(gl)⋅sinθ1
Now these equations can be solved using ode45 function of MATLAB.
The parameters choosen for study are as follows:
L=1m
m=1kg
b=0.05
g=9.81ms2
with initial conditions,
θ=0
dθdt=3
MATLAB Main Program:
% Program to solve 2nd order ODE for pendulum
close all
clear all
clc
% inputs from challenge
l=1; % length of pendulum
m=1; % mass of ball
b=0.05; % Damping Coefficient
g=9.81; % gravitational acceleration
% Initial Condition
theta_0 = [0;3];
% time points
t_span = linspace(0,20,500);
% ode solution
[t results] = ode45(@(t,theta) ode_func(t, theta, b, g, l, m), t_span, theta_0);
% plot results
figure(1)
plot(t, results(:,1))
hold on
plot(t, results(:,2))
xlabel('time')
ylabel('plot')
% creating animation
ct =1; % counter variable to keep track of frame number
for i = 1 : length(results(:,1))
x0 = 0;
y0 = 0;
x1 = l*sin(results(i,1));
y1 = -l*cos(results(i,1));
figure(2)
plot([-1 1], [0 0], 'linewidth', 10, 'color', 'g') % plot fixed support
axis([-2 2 -2 2])
hold on
line([x0 x1], [y0 y1], 'linewidth', 5, 'color', 'b') % plot string position
plot(x1, y1, 'o', 'markersize', 25, 'markerfacecolor', 'r') % plot ball position
hold off
M(ct) = getframe(gcf); % stores current frame
ct = ct+1;
end
% Create movie
movie(M)
videofile = VideoWriter('Pendulum_simulation.avi', 'Uncompressed AVI'); % create videofile
open(videofile); % open videofile
writeVideo(videofile, M) % write frames to videofile
close(videofile) % close video file
ode_func :
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
ode_func converts second order differential equation into two single order differential equations.
Code is explained used comments at each section.
Response Curve:
In plot Blue curve represnts displacemets and Red curve represents Velocity.
Animation:
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 perform frequency analysis on a circular disc mounted on a stepped shaft. Model: A circular disc with stepped shaft is as shown in figure below, The dimension for the model are as follows, Diameter of disc = 100mm Thickness os disc = 10mm Shaft Diameter = 20mm Shaft Length = 300mm The taper part of shaft is 12.5mm…
22 Jun 2020 10:59 AM IST
Buckling Analysis of Cyclone Separator Stand - maximize Buckling Factor of Safety
Aim: To perfrom buckling analysis on cyclone separator stand and determine optimum location for the stiffner. Introduction: When long vertical support elements of a structure are subjected to a vertical load then the support element fails due to buckling. Structural members are generally designed for a buckling factor…
21 Jun 2020 09:49 AM IST
Static Stress Analysis of Beams of different cross-section
Aim: To perform static stress analysis on beams of different cross-section and choose best one out of them. Introduction: Beam is a structural element that primarily resists loads applied laterally to the beam's axis. It's mode of deflection is primarily by bending. The total effect of all the forces acting on the beam…
21 Jun 2020 09:32 AM IST
Modelling and simulation of flow through a flowbench
Aim: To perform flow simulation through Flowbench Objective: To model a flowbench and perform grid dependece test to find the optimal mesh size and to perform flow simulation to find effect of valve lift on mass flowrate. Theory: An flow bench is a device used for testing the internal aerodynamic qualities…
18 Jun 2020 09:20 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.