All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM : To solve the second-order differential equation using MATLAB which mathematical of the motion of the pendulum and to create an animation for that equation. OBJECTIVE : To write a program that solves the following second-order differential equation. This second-order differential equation represents…
Damodhar Jangam
updated on 04 Dec 2020
AIM :
To solve the second-order differential equation using MATLAB which mathematical of the motion of the pendulum and to create an animation for that equation.
OBJECTIVE :
To write a program that solves the following second-order differential equation. This second-order differential equation represents the equation of motion of a simple pendulum with damping
GOVERNING EQUATIONS :
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.
FIXED PARAMETERS
Length (L) =1 metre,
Mass (m) =1 kg,
Damping coiefficient (b) =0.05.
Acceleration due to gravity (g) =9.81 m/s2.
For Time period = 0-20 sec
Matlab code:
Main code:
clearvars
close all
clc
b = .05; % b=damping coefficient.
l = 1; % L = length of the pendulum in m,
g = 9.81; % g = gravity in m/s2,
m = 1; % m = mass of the ball in kg,
% intial condition
theta_0 = [0 5];
% time point
t_span =linspace(0,20,100);
% solve ODE
[t, result] = ode45(@(t,theta) ODE_func(t,theta,b,g,l,m), t_span, theta_0);
figure (1);
plot(t,[result(:,1) result(:,2)]);
grid on
ylabel('Plot')
xlabel('Time')
legend('Displacement (m)','Velocity (m/s^2)');
saveas(figure(1),'SHM.jpg');
theta = result(:,1);
i = 1;
for j= 1:length(theta)
Theta = theta(j);
%initial points
x0 = 0;
y0 = 0;
%movement of pendulum
x1 = l*sin(Theta);
y1 = -l*cos(Theta);
figure (2);
%Plotting string
plot([x0 x1], [y0 y1],'color', 'g');
hold on
%Plotting pendulum bob
plot(x1,y1,'O','markersize',10,'color','r','MarkerFaceColor','r');
hold off
axis([-1.2 1.2 -1.2 1.2]);
pause(0.001);
M(i) = getframe(gcf);
i = i+1;
end
movie(M);
videofile = VideoWriter('pendulum1.avi', 'Uncompressed avi');
open(videofile)
writeVideo(videofile,M)
close(videofile);
function code : 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
Results:
The program executed and animation generated successfully.
Output:
ANIMATION
link for the motion of pendulum:
the plot of the graph:
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...
Final Project: Electric Rickshaw modelling
Aim of Project: Creating a MATLAB model of an electric rickshaw (three-wheel vehicle) with three driving cycles and variation temperature and driver rickshaw for 100Km constant speed driving at 45kmph. THEORY: Electric rickshaws (also known as electric tuk-tuks or e-rickshaws or toto or e-tricycles) have…
30 Jul 2021 06:33 AM IST
MBD Simulation on IC Engine Valve Train
Aim: Modelling and analysis of IC Engine Valvetrain for detecting the valve displacement and contact forces between contacts. Objectives: Obtain valve lift for given CAM lift of 3.5 mm & 6 mm at the same speed (1500 RPM) Obtain Plots between contact force of Cam & Push rod, Push rod…
18 Jul 2021 03:16 PM IST
MBD Simulation on a Piston Assembly
Aim: Modelling and assembly of Piston Assembly as well as Calculating Linear displacement of the Piston Head in all three cases of gudgeon offset with help of motion analysis and compare results. Introduction: Piston assembly consists of a piston, crank, connecting rod and piston pin known as a gudgeon pin. Functions…
18 Jul 2021 06:12 AM IST
Planetary Gear
Aim: Modelling Planetary Gear mechanism and calculating angular velocity with fixing by fixing the sun gear, ring gear and Carrier separately with help of motion analysis Introduction: A planetary gear set (also known as an epicyclic gear train ) consists of two gears mounted so that the centre…
17 Jul 2021 02:48 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.