Menu

IIT Certification Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

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…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Deepak Purohit (2)

    Project - Speed Control of a Direct Current (DC) motor

    Objective:

    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…

    calendar

    21 Aug 2022 01:42 PM IST

      Read more

      Project - Data Handling and Interpolation

      Objective:

      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');…

      calendar

      30 Jun 2022 01:24 PM IST

        Read more
        Showing 1 of 2 projects