Matlab
Matlab
Assignment # 2
Roll No 035
Underdamped
m=1 kg
k=2 N/m
Zeta=0.3
Critically Damped
m=3 kg
k=2 N/m
Zeta=1
Overdamped
m=2 kg
k=3 N/m
Zeta=2
Mechanical Vibrations
Assignment # 3
Roll No 035
Underdamped
m=5 kg
k=30 N/m
Zeta=0.35
Critically Damped
m=10 kg
k=10 N/m
Zeta=1
Overdamped
m=5 kg
k=7 N/m
z=1.5
MATLAB Code for Coulomb Damping
% Parameters
clc
m = input('mass= '); % mass
mu = input('coefficient of friction= '); % damping coefficient
g = 9.81; % acceleration due to gravity
k = input('coefficient of spring constant= '); % spring constant
% Time span
tspan = [0 10];
% Initial conditions
x0 = [5; 0]; % initial displacement and velocity
subplot(2, 1, 2);
plot(t, x(:, 2));
xlabel('Time (t)');
ylabel('Velocity');
k=10
Plot 2
m=5
k=10
Plot 3
m=1
k=10
Mechanical Vibrations
Assignment # 4
Magnification Factor
Roll No 035
% Plot results
figure;
plot(omega_range, max_amplitudes/delta);
xlabel('Frequency Ratio (\omega/\omega_n)');
ylabel('Maximum Amplitude');
title('Force Vibration with Viscous Damping');
legend(strcat('\zeta = ', cellstr(num2str(zeta_values'))));
grid on;
Results
MATLAB Code for Phase Angle
% Define the range of r values
r = linspace(0, 5, 100);
for i = 1:length(zeta_values)
zeta = zeta_values(i);
phi_rad =atan((2 * zeta * r) ./ (1 - r.^2));
hold off;
Assignment # 5
Roll No 035
% Plot results
figure;
plot(omega_range, max_amplitudes/Y);
xlabel('Frequency Ratio (\omega/\omega_n)');
ylabel('Maximum Amplitude');
title('Force Vibration with Viscous Damping');
legend(strcat('\zeta = ', cellstr(num2str(zeta_values'))));
grid on;
Results
for i = 1:length(zeta_values)
zeta = zeta_values(i);
phi_rad = atan((2*zeta*r.^3)./(1+(4*zeta^2-1)*r.^2));
% Convert phi from radians to degrees
phi_deg = rad2deg(phi_rad);
hold off;
Result
Mechanical Vibrations
Assignment # 6
Roll No 035
#define ADXL345_ADDRESS_1 (0x53) // I2C address for the first ADXL345 sensor
#define ADXL345_ADDRESS_2 (0x1D) // I2C address for the second ADXL345 sensor
const int arraySize = 100; // Adjust the size of the array as needed
int dummy[arraySize];
float xValues1[arraySize], yValues1[arraySize], zValues1[arraySize];
float xValues2[arraySize], yValues2[arraySize], zValues2[arraySize];
unsigned long times[arraySize];
void setup() {
Serial.begin(2000000);
void loop() {
for (int i = 0; i < arraySize; i++)
{
// Read data from the first accelerometer
sensors_event_t event1;
accel1.getEvent(&event1);
xValues1[i] = event1.acceleration.x;
yValues1[i] = event1.acceleration.y;
zValues1[i] = event1.acceleration.z;