All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: TO CREATE A PENDULUM ANIMATION USING ODE45 IN BULID COMMAND IN MATLAB. GOVERNING EQUATION OF PENDULUM: 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. q = displacement. t = time in sec. HERE, INITIAT WE ASSUMED THE VALUES OF ABOVE…
Kishoremoorthy SP
updated on 29 Jul 2022
AIM:
TO CREATE A PENDULUM ANIMATION USING ODE45 IN BULID COMMAND IN MATLAB.
GOVERNING EQUATION OF PENDULUM:
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.
q = displacement.
t = time in sec.
HERE, INITIAT WE ASSUMED THE VALUES OF ABOVE
g = 9.81
L = 1
m = 0.1
b = 0.05
DISCRETISATION OF AN ODE
The equation cannot be directly solves using the MATLAB solver and the so, we should convert the same into the 1st order differential equation.
WHAT IS ODE45 COMMAND IN MATLAB?
The equation cannot be directly solves using the matlab solver and the so we should convert the same into the 1st order differential equation
THIS IS SYNTAX OF ODE45
[t,results]=ode45(@(t,theta)ode_func(t,theta,b,g,l,m),t_span,theta_0)
IN ABOVE STATEMENT THE ode45@(t,theta) is ANONYMUS FUNCTION
Anonymous functions are very much similar to the regular user-defined functions in MATLAB, but with some distinct individual traits, Anonymous functions are not stored as function files or codes, instead it is just a data type which makes use of 'function handle' data type.
BODY OF THE CONTENT OF CODE:
clear
close
clc
%%% INPUT PARAMETERS
b=0.05;
g=9.81;
l=1;
m=0.1;
%Intial Condition
theta_0=[0;3];
%Time Points
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);
%TO RUN A LOOP FOR DIFFERENT VALUES OF THETA
ct = 1 ;
for i= 1:length(results(:,1))
x0=0;
y0=0;
x1=l*sin(results(i,1));
y1 = -1*cos(results(i,1));
plot([1 1],[0 0],'LineWidth',4,'color','k');
hold on
plot([x0 x1] , [y0 y1],'linewidth',2,'color','b');
hold on
%marker is important to denote the dark embeded circle which will reflect BOB
plot(x1,y1,'-o','markers',20,'markerfacecolor','r');
xlabel('X AXIS');
ylabel('Y AXIS');
title('ANIMATION OF PENDULUM MOTION')
grid on;
axis([-1.5 1.5 -1.5 0.5])
pause(0.000003);
hold off
q(ct) = getframe(gcf);
%Text = sprintf("pendulum%d.png",ct);
%saveas(1,Text)
ct = ct+1;
end
movie(q)
videofile=VideoWriter('Pendulum_damped.avi','uncompressed avi');
open(videofile)
writeVideo(videofile,q)
close(videofile)
FUNCTION USED IN ODE45 COMMAND:
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
EXPLANTION OF THE CODE LOGICS:
THE ANIMATION OF PENDULUM MOTION CAN BE SEEN THE BELOW LINK:
COCLUSION:
FINALLY USING THE ODE45 COMMAND TOOL THE PENDULUM HAS BEEN ANIMATED AND UPLOADED AND
IT IS VERY INTERESTING TO SOLVE THIS TYPES OF PROBLEM.
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...
Week 4 Challenge : CFD Meshing for BMW car
AIM: FOR THE GIVE MODEL, CHECK AND SOLVE ALL GEOMETRICAL ERRORS ON HALF PORTION AND ASSIGN APPROPRITATE PIDS. PERFORMS MESHING WITH GIVEN TARGET LENGTH AND ELEMENT QUALITY CRITERIA. AFTER MESHING THE HALF MODEL,DO SYMMETRY TO THE OTHER SIDE. PRODECURE: INITIALLY, OPEN THE GIVEN BMW MODEL IN ANSA SOFTWARE.…
20 Oct 2023 11:25 AM IST
Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation
Aim: employing the symmetry boundary condition to simulate an axis-symmetric laminar flow through the pipe's constant cross-section. Using both symmetry and wedge boundary conditions, simulate the aforementioned angles—10, 25, and 45 degrees—and evaluate your results using HP equations. Introduction: Hagen-Poiseuille's…
04 May 2023 03:14 PM IST
Week 11 - Simulation of Flow through a pipe in OpenFoam
Aim: Simulate axisymmetric flow in a pipe through foam. Objective: Verify the hydrodynamic length using the numerical result Verify a fully developed flow rate profile with its analytical profile Verify the maximum velocity and pressure drop for fully developed flow Post-process Shear Stress and verify wall shear stress…
04 May 2023 03:04 PM IST
Week 9 - FVM Literature Review
AIM To describe the need for interpolation schemes and flux limiters in Finite Volume Method (FVM). OBJECTIVE To study and understand What is Finite Volume Method(FVM) Write down the major differences between FDM & FVM Describe the need for interpolation schemes and flux limiters in FVM INTRODUCTION …
03 May 2023 05:47 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.