clear all close all clc b=0.05; m=1; l=1; g=9.81; %initial condition theta_0=[0;3]; %time points t_span=linspace(0,20,200); %solve ode [t,results]= ode45(@(t,theta) ode_func(t,theta,b,g,m,l),t_span,theta_0); plot(t,results(:,1)); hold on plot(t,results(:,2)); ylabel('plot'); xlabel('time'); %pendulum figure(2) for i =…
Ramesh Rajkumar K
updated on 10 Dec 2021
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 Ramesh Rajkumar K (13)
Project-1: Powertrain for aircraft in runways
1.list out the total weight of various types of aircrafts. The aircraft gross weight (also known as the all-up weight and abbreviated AUW) is the total aircraft weight at any moment during the flight or ground operation.[1][2][3] An aircraft's gross weight will decrease during a flight due to…
02 Jun 2022 10:56 AM IST
Week-11 Challenge: Braking
For a defined driving cycle, calculate the energy required for braking. The function of the braking system is to retard the speed of the moving vehicle or bring it to rest in the shortest possible distance whenever required. The vehicle can be held on an inclined surface against the pull of gravity by the application of…
27 May 2022 12:40 PM IST
Week-7 Challenge: DC Motor Control
3.Explain in a brief about operation of BLDC motor. A brushless DC motor (also known as a BLDC motor or BL motor) is an electronically commuted DC MOTOR which does not have brushes. The controller provides pulses of CURRENT to the motor windings which control and torque of the synchronous motor: These types of motors…
24 May 2022 05:21 AM IST
Week-6 Challenge: EV Drivetrain
2. An Electric Vehicle's powertrain with 72V battery pack in shown in the diagram below. The duty ratio for acceleration operation is 'd1' and for the braking operation the duty ratio is 'd2'. GIVEN DATA:- The other parameters of the electric vehicle is given below, Motor and…
19 May 2022 12:06 PM IST
Week-4 Challenge WOT Condition Part-2
ANSWER:- 1.What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type.. Mapped and Dynamic subsystem of Electric Motor/GeneratoR: Mapped:- Mapped Model::- The mapped model is one type where the data points are pre_assigned in lookup tables. The…
14 May 2022 04:41 AM IST
Week-3 Challenge: ADVISOR Tool
ANSWER:- 1.For EV_defaults_in file, if cargo mass is 500 kg with all other default conditions, can the vehicle travel for 45 km with FTP drive cycle. Conclude your observations. We have to change the model advisor tool on this given data. STEP:1 CHANGE THE MODEL Into EV IN DRIVETRAIN CONFIGURATION:- STEP:2 HERE WE…
12 May 2022 12:35 PM IST
Project 1- Traffic Jam Assistant Feature
Aim :- Traffic Jam Assistant Feature;- Objective :- This model must be developed in MATLAB Simulink as per MBD guidelines according to the requirements given. Tag the requirements to the Simulink model, Requirements 1 & Requirement 2 are tagged into their corresponding subsystems. Creation of Simulink Data Dictionary…
07 Apr 2022 10:30 AM IST
Project 2 Adaptive Cruise Control
Aim :- Develop a MATLAB Simulink Model for Adaptive Cruise Control feature used in Automotive Vehicle Objective:- To develop a Adaptive Cruise Control feature as per the Requirement Document using MATLAB Simulink. While Developing the Adaptive Cruise Control Simulink Model, we have follow all the MBD related processes…
10 Mar 2022 11:52 AM IST
Project 1 (Mini Project on Vehicle Direction Detection
MINI-PROJECT: General Overview: Identifying the direction of the vehicle is one of the important & diverse features in Autonomous driving & Advanced Driver Assistance Features. This particular sub-feature of identifying the direction of vehicle is basically identifying the direction the vehicle is taking based…
08 Mar 2022 04:58 PM IST
Week - 4
Make a Simulink chart for the “Gear shift” logic as per below conditions: Speed Range(kmph) Gear 0 to 15 …
14 Feb 2022 11:40 AM IST
Week -2
1.BLOCK DAIGRAM: GRAPH HERE THE EXPALNATION; SOLENIOD This block implements the electrical and mechanical characteristics of a solenoid.THIS ONE IS CONNECTED TO THE POSTIVE TERMINAL OF THE BATTERY..THE CONNECTION THROUGH PARALLEL SERIES BATTERY; This block models a battery. If you select Infinite for the Battery charge…
20 Jan 2022 03:07 PM IST
Week 3 - Solving second order ODEs
clear all close all clc b=0.05; m=1; l=1; g=9.81; %initial condition theta_0=[0;3]; %time points t_span=linspace(0,20,200); %solve ode [t,results]= ode45(@(t,theta) ode_func(t,theta,b,g,m,l),t_span,theta_0); plot(t,results(:,1)); hold on plot(t,results(:,2)); ylabel('plot'); xlabel('time'); %pendulum figure(2) for i =…
10 Dec 2021 07:12 AM IST
Week 2- 2R Robotic Arm Challenge
clear all close all clc %inputs l1=1; l2=0.5; theta1=linspace(0,90,10); theta2=linspace(0,90,10); ct=1; x0=0; y0=0; %coordinates for i=1:length(theta1); THETA1=theta1(i); for j=1:length(theta2); THETA2=theta2(j); x1=l1*cosd(THETA1); y1=l1*sind(THETA1); x2=x1+l2*cosd(THETA2); y2=y1+l2*sind(THETA2); plot([x0 x1],[y0 y1],[x1…
02 Dec 2021 11:55 AM IST