logo

Engineering Maths and Modelling

10 Pages1347 Words81 Views
   

Added on  2023-01-13

About This Document

This document contains study material and solved assignments on Engineering Maths and Modelling. It includes questions and solutions related to differential equations, harmonic motion, forcing term, natural frequency, damping, and dynamic response.

Engineering Maths and Modelling

   Added on 2023-01-13

ShareRelated Documents
Engineering Maths and Modelling
Engineering Maths and Modelling_1
Table of Contents
Question 1...................................................................................................................................................3
Question 2...................................................................................................................................................5
Question 3...................................................................................................................................................6
Engineering Maths and Modelling_2
Question 1
V(dx/dv) = -x
v.dv= -x dx
Initial value x=a, v=0, Put in equation 3,
V^2/2 = - x^2/2 + c
0 = -a^2/2 + c
C = a^2/2
X = a cos (t)^1/2
function yp = unforced1(t,y)
yp = [y(2);(-((c/m)*y(2))-((k/m)*y(1)))];
tspan=[0 4]; y0=[0.02;0];
[t,y]=ode45('unforced1',tspan,y0);
plot(t,y(:,1)); grid on xlabel(‘time’) ylabel(‘Displacement’) title(‘Displacement Vs Time’)
N = 200;
phi = pi/4;
A = 1;
B = 1;
t0 = -2;
tf = 2;
t = t0:(tf-t0)/(N-1):tf;
w = pi;
x = A*cos(w*t+phi);
y = B*cos(2*w*t-phi);
plot(t,x,'linewidth',3,'color','r')
grid
hold on
plot(t,y,'linewidth',3,'color','b')
a = title('Harmonic motion of phase \phi = \pi/4');
set(a,'fontsize',14);
a = ylabel('y(t), x(t)');
set(a,'Fontsize',14);
a = xlabel('t [-2 2]');
set(a,'Fontsize',14);
legend('x(t)', 'y(t)')
Engineering Maths and Modelling_3

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Data Processing Assignment
|8
|1071
|119

Maths Differential Equations Assignment 2022
|20
|182
|15

Force-Transient Response of 1DOF System with Numerical Convolution, Laplace Transform and MATLAB
|19
|5903
|331

ENS6160: Signals & Systems
|12
|720
|276

Mechanical System Dynamics Assignment
|11
|1290
|18

Harmonic Balance Method and Methods of Scaling for Electronics and Communication Engineering
|6
|914
|389