clc; clear; %Nominal paramete of spring mass system m = 3.6; %mass of spring mass system k = 400.0; %stiffness constant of spring mass system c = 100.0; %damping coefficient Ns/m %Equivalent Wn: wn=sqrt(k/m); %Design parametes:…
Saravanan R
updated on 27 Jan 2023
Project Details
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...
Read more Projects by Saravanan R (4)
Project - Position control of mass spring damper system
clc; clear; %Nominal paramete of spring mass system m = 3.6; %mass of spring mass system k = 400.0; %stiffness constant of spring mass system c = 100.0; %damping coefficient Ns/m %Equivalent Wn: wn=sqrt(k/m); %Design parametes:…
27 Jan 2023 12:29 PM IST
Project - Analysis of a practical automotive wiring circuit
ans1)major elements in the above automotive wiring diagram: Battery Starter Ignition coil Breaker Distributor Generator Current & voltage regulator Ignition switch Foot selection switch Junction block Fuse ans2) the purpose and working of any three elements briefly: Starter: purpose of starter motor…
07 Dec 2022 03:36 AM IST
Project - Data Handling and Interpolation
load('data.mat'); fileID = fopen('interpolation.txt','w'); % create fileid for text file x = ans.data(1:24); % defining a variable x from excel file y = ans.data(25:end); …
22 Nov 2022 05:38 AM IST
Project - Data Handling and Interpolation
ans1) data of voltage and current has been recorded in the Matlab program and perform the interpolation in the range of -17.3:0.1:0.9. Generate the interactive plot for the interpolated data and store them in a text file: load('data.mat'); fileID = fopen('interpolation.txt','w'); x = ans.data(1:24); …
21 Nov 2022 05:08 AM IST