Sol.1 Script: % Design parameters to model a DC motor Jm = 0.01; % Moment of inertia of the rotor in kg-m^2 Bm = 0.1; % Motor viscous friction constant in N-m-s Km = 0.01; % Back EMF constant in v/rad/s Kt = 0.01; % Motor torque constant in N-m/amp Ra = 0.5; % Resistance of the armature circuit in ohms La = 0.25; % Inductance…
Deepak Purohit
updated on 21 Aug 2022
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 Deepak Purohit (2)
Project - Speed Control of a Direct Current (DC) motor
Sol.1 Script: % Design parameters to model a DC motor Jm = 0.01; % Moment of inertia of the rotor in kg-m^2 Bm = 0.1; % Motor viscous friction constant in N-m-s Km = 0.01; % Back EMF constant in v/rad/s Kt = 0.01; % Motor torque constant in N-m/amp Ra = 0.5; % Resistance of the armature circuit in ohms La = 0.25; % Inductance…
21 Aug 2022 01:42 PM IST
Project - Data Handling and Interpolation
Project: clc data = xlsread('VI.xlsx'); % voltage and current value read from excel file format compact; V = data(:,1); % : means all row and 1 means is 1 column I = data(:,2); v = -17.3:0.1:0.9; i = interp1(V,I,v,"linear"); plot(v,i) xlabel('Voltage'); ylabel('Current'); title('Voltage Vs Current using interpolation');…
30 Jun 2022 01:24 PM IST