All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Q: Write a program in Matlab that will simulate the pendulum motion and also its animation by using the below values? L = 1 metre, m = 1 kg, b = 0.05, g = 9.81 m/s2. Simulate the motion between 0-20 sec, for angular displacement = 0, angular velocity = 3 rad/sec at time t = 0. Ans: A simple pendulum is a mechanical…
ABHITEJA PADMA
updated on 11 Sep 2020
Q: Write a program in Matlab that will simulate the pendulum motion and also its animation by using the below values?
L = 1 metre, m = 1 kg, b = 0.05, g = 9.81 m/s2. Simulate the motion between 0-20 sec, for angular displacement = 0, angular velocity = 3 rad/sec at time t = 0.
Ans: A simple pendulum is a mechanical arrangement which describes the periodic motion. A simple pendulum consists of a small bob of a certain mass attached to non-extensible and negligible weight thread. Another end of a thread is fixed support. When initial conditions are provided to this system, it generates a motion called the periodic motion of a simple pendulum.
In other words, suspension of a mass with a thread and calculation of its motion.
The whole setup is represented in the following figure.
The motion of a simple pendulum with initial values are solved in MATLAB using ODE.
ODE means Ordinary Differential Equation. It is a differential equation containing one or more functions of one independent variable and derivatives of those functions. The order of an ODE is the highest derivative present in the equation.
To solve higher ODE, we need to convert it into first-order differential equations and solve it. In MATLAB, ode45 is used for solving the system.
We can also solve other problems like dampers and springs used in vehicle dynamics by this kind of method.
Syntax:
[t, y] = ode45(odefun, tspan, y0)
where tspan = [ti tf]
y0 = initial condition
tspan integrates within the limits of ti to tf.
odefun is a function of solvable expression. In this function, y0 values are taken into consideration initially and solved continuously.
Below is the ODE that represents the equation of motion of a simple pendulum:
Terms and its definitions:
b = Damping coefficient.
m = mass of the bob.
g = gravity.
L = length of the pendulum.
Angular displacement: Displacement that occurred in angles of a mass is known is Angular displacement.
Angular Velocity: The rate of change of angular displacement with respect to time is known as Angular Velocity.
Damping coefficient: The property that describes whether the object will bounce back or return energy to a system is called a damping coefficient. High damping coefficient reduces the unwanted vibrations, shock, noise and swallows the energy.
'theta' is denoted by displacement and 't' is denoted by time.
The above equation is a second-order equation and for solving we convert them into first-order differential equations.
Let us assume, θ = θ1
By derivating wrt to 't',
dθ/dt = dθ1/dt
Let us assume dθ1/dt = θ2
⇒ dθ/dt = θ2
By derivating on both sides, we get
dθ^2/dt^2 = dθ2/dt
Hence, the ODE can be written as
dθ^1/dt^2 + (b/m) * (dθ1/dt) + (g/L) * sin θ1 = 0
⇒ dθ2/dt + (b/m) * (θ2) + (g/L) * sin θ1 = 0
∴ We created 2 ODE's
This is represented in the form of column matrix.
To solve this solution, we write code in two scripts. The above conversion is written in the main script and plotting is done in execution script.
Main script:
Code for the main script:
function [dtheta_dt] = ode_funcsample(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]
Execution script:
Code for execution script:
clear all
close all
clc
% input
b = 0.01;
g = 9.81;
l = 1;
m = 0.1;
% initial condition
ini = [0 ; 3]
% time points
t_span = linspace(0, 20, 300);
% solve ODE
[time, results] = ode45(@(t, theta) ode_funcsample(t,theta,b,g,l,m), t_span, ini);
%plotting
figure(1)
plot(time, results(:, 1), 'r', time, results(:,2), 'b')
xlabel('time')
ylabel('plot')
title('Plots of displacement and velocity wrt to time')
legend('disp-time', 'vel-time')
hold off
figure(2)
ct = 1
for i = 1 : length(results(:,1))
x0 = 0;
y0 = 0;
x1 = l*sin(results(i,1));
y1 = -l*cos(results(i,1));
plot([-1 1],[0 0], 'linewidth', 3, 'color', 'r')
hold on
plot([x0 x1], [y0 y1], 'color', 'black')
hold on
plot(x1, y1, 'O', 'MarkerSize', 20, 'color', 'b', 'MarkerFaceColor', 'b')
hold on
plot([0 0], [0 -1.5],'LineStyle', '--', 'color', 'black')
hold off
pause(0.03)
axis([-2 2 -2 1.5])
M(ct) = getframe(gcf);
ct = ct + 1;
end
% creating animation
movie(M)
videofile = VideoWriter('simple_pendulum_motion.avi', 'uncompressed AVI')
open(videofile)
writeVideo(videofile, M)
close(videofile)
Output in the command window: Output in the command window shows values and the file details in the file manager.
Results: First column represents displacement and second column represents velocity. We get 300x2 matrix.
Output plots of code: Two curves are represented in the time interval of 0-20 seconds. Red line represents displacemnet-time curve and blue line represents velocity-time curve.
The output of figure(2): This is the figure we get when the whole program is run.
Link for the motion of a simple pendulum:
The motion of a simple pendulum using MATLAB
Points to remember:
Errors and rectification:
Conclusion: Therefore, the video for the motion of a simple pendulum is created by solve ODE using MATLAB.
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 11 - Final project
Aim: To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy. Objective: 1.To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy.2.Create thickened part using master section for reference3.Create the mounting features as per design guidelines…
20 Dec 2021 10:17 AM IST
Week 9 - Project - Master Section Development
Aim : Design B-Pillar through master section Development. Step 1 : Create tooling axis. For creating the tooling axis first we extract this 4 boundries. Took a point between this 2 lines. then draw a bisecting line between this two line by using point. again bisect the remaining two lines. and finally bisect the resultant…
20 Dec 2021 10:10 AM IST
Week 9 - Project 1 - Door Applique Design with Engineering Features
Aim:Create the door applique plastic component,create tooling axis,Heat stakes & locators by using class A surface. Create tooling axis Make a close body by using Class A surface Create adrawing for 4 way locator Then pad the $ way locator sketch. After that give the thicken command to class A surface Give…
20 Dec 2021 10:02 AM IST
Week 9 - Attachment Feature Creation - Challenge 2
Aim: To create a screw boss and dog house for the centre console coin holder by considering design rules. General Guidelines for the creation of Bosses: Draft - 0.5 degrees on walls of boss Thickness - Typically 40%* of the nominal wall at the base. Height to Diameter Ratio…
04 Oct 2021 05:53 PM 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.