% Otto cycle using matlab. % inputs gamma = 1.4 t3 = 2300 % state variables p1 = 101325 t1 = 500 % engine geometric parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12; a = stroke/2; R = con_rod/a; % calculating the swept volume and clearance volume v_s = pi/4*bore^2*stroke; v_c = v_s/(cr-1); v1 = v_s + v_c v2…
HRISHIKESH KATKAR
updated on 13 Jan 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 HRISHIKESH KATKAR (18)
Project 2 Adaptive Cruise Control
Adaptive cruise control- Developing Adaptive Cruise Control feature- Requirement 1– Lead Vehicle: Lead Vehicle is a vehicle which is driving in the road ahead of our drive vehicle. Two input signals (Signal Name: CameraInput_LeadVehicle & RadarInput_LeadVehicle). Ideally sensor fusion techniques will be…
31 May 2022 05:53 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
Development of MATLAB Simulink model as per requirement This is the main model subsystem that having two inputs SteeringWheel_YawDegreeInput and Camerainput_Roadsign entering into the Vehicle Detection Determination and one output Vehicle_Direction_indicator. There are 2 requirements are designed in two subsystem- Requirement…
30 May 2022 11:14 AM IST
Project 2 Thermal modeling of battery pack
Simulink Model- Circuit construction and working: In this ckt we use li-ion cell 1 to 10, temperature sensors, ambient temp block, state of charge estimation, scope, charge discharge profile given to ckt, from and goto block. Results: 1) Results at 300 k i.e 26.85 degree celcius 2) Results at 310k i.e 36.85 degree celsius…
18 May 2022 03:03 AM IST
Project 1 Mechanical design of battery pack
To make the battery pack we have to first finalize the nominal voltage and capacity of the pack. Either it will be in terms of volt, mAh/Ah or Wh. The individual cell : ANR26650M1-B has Nominal voltage = 3.3 V Current capacity = 2.5 Ah So, let us assume that for 18 kwh battery pack we need supply voltage of 200 V and 90Ah.…
17 May 2022 05:16 AM IST
Week 7 State of charge estimation
Simulation of closed-loop BMS- The BMS model consist of a BMS ECU (electrical control unit) and a plant. The control unit with its various monitoring and control algorithms is connected to a block with the representation of the battery pack and associated circuitry and peripherals. The harness dashboard is…
12 May 2022 06:11 PM IST
Project-1: Powertrain for aircraft in runways
ANS 1 1. Search and list out the total weight of various types of aircrafts. Weight is a major factor in airplane construction and operation, and it demands respect from all pilots and particular diligence by all maintenance personnel.Excessive weight reduces the efficiency of an aircraft and the available safety…
07 May 2022 08:10 PM IST
Week 1 Understanding Different Battery Chemistry
ANS 1 Sr. No Battery type Electrode material Chemical reaction 1 LCO Lithium Cobalt oxide Cathode-Lithium cobalt oxide(LiCoO2). Anode – Graphite. At anode-LiC6 ->Li-+ + e- + C6 At cathode – CoO2 + Li-+ + e- -> LiCO2 Complete –LiC6 + CoO2 -> C6 + LiCoO2 2 LMO…
06 May 2022 04:04 AM IST
Week-11 Challenge: Braking
ANS 1 We require some amount of power which is used for accelerating the vehicle and also for the braking of vehicle. Here we consider the drive cycle which is predefined . Workdone = kinetic energy = 0.5 * m *v^2 For calculating the energy- E =0.5*m*v^2 m = mass of the vehicle = 1000 kg v = velocity of the vehicle = Vf…
04 May 2022 03:10 AM IST
Week-7 Challenge: DC Motor Control
ANS 1 The bipolar junction transmitor(BJT) when used for power switching applications, operates as an IGBT.Where it is conducting(BJT operating in the saturated region), a forward voltage vf is developed between collector and emitter. Therefore the IGBT block can be used to model the BJT device. The IGBT block doen not…
29 Apr 2022 04:40 AM IST
Week-6 Challenge: EV Drivetrain
ANS 1 *Types of power converter circuits employed in an electric and HEVs- Power electronics is the application to control and conversion of electric power. A power converter is a process of converting electric energy from one form to another. A power converter is an electromechanical device for converting electrical…
28 Apr 2022 04:39 AM IST
Week-3 Challenge: ADVISOR Tool
ANS 1 CONCLUSION: Thus we can see that for 3 number of cycles at the given conditions, the vehicle can travel for only 41.1 km. * If we increse the number of cycles then the vehicle can travel above 45 km. ANS 2 We can see that by increasing the battery capacity, the vehicle can travel for more than 53kms in the…
25 Apr 2022 05:04 AM IST
Week-4 Challenge WOT Condition Part-2
ANS 1 Difference between mapped and dynamic model of engine: Powertrain Blockset provides two types of Engine models: mapped and dynamic. Mapped engines represent macro engine behavior as a set of lookup tables (brake torque, fuel flow, air mass flow, exhaust temperature, efficiency and emissions) as a function of commanded…
24 Apr 2022 04:15 AM IST
Week -2
Aim : Make a simulink model of Doorbell using solenoid block. Report: 1.In simulink Model of door bell using solenoid block,we need a switch,solenoid,battery and a plunger. 2. Now first a 'solenoid block' is taken to represent a solenoid in the model, then to represent battery we have taken…
07 Mar 2022 06:33 PM IST
Project 1 - Parsing NASA thermodynamic data
% Project 1 Parsing NASA thermodynamic data clear all close all clc f1 = fopen('THERMO.dat','r'); for i = 1:5 a = fgetl(f1); end for z = 1:53 Header = fgetl(f1); b = strsplit(Header,' '); % split the header line species_name = b{1}; local_low_temp = str2double(b{end-3}); local_High_temp = str2double(b{end-2});…
15 Feb 2022 12:04 PM IST
Week 4.1 - Genetic Algorithm
% MATLAB code to optimise the stalagmite function and find the global % maxima. clear all close all clc % defining our search space x = linspace(0,0.6,150); y = linspace(0,0.6,150); num_cases = 50; % creating a 2 Dimensional space [xx,yy] = meshgrid(x,y); % Evaluating the stalagmite function for i = 1:length(xx)…
03 Feb 2022 06:27 AM IST
Week 3 - Solving second order ODEs
https://youtu.be/2MylDz4AClU clear all close all clc %damping coefficient b = 0.05 %length of the pendulum in mm l = 1 %mass of the ball in kg m = 1 %gravity in m/s^2 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,l,m,g),t_span,theta_0);…
16 Jan 2022 07:01 PM IST
Otto cycle engine kinematics and Air standard efficiency using Matlab.
% Otto cycle using matlab. % inputs gamma = 1.4 t3 = 2300 % state variables p1 = 101325 t1 = 500 % engine geometric parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12; a = stroke/2; R = con_rod/a; % calculating the swept volume and clearance volume v_s = pi/4*bore^2*stroke; v_c = v_s/(cr-1); v1 = v_s + v_c v2…
13 Jan 2022 12:04 PM IST
Week 2- 2R Robotic Arm Challenge
https://youtu.be/bw4TaMLm48s % Forward kinematics of a 2R robotic arm manipulator clear all close all clc %Inputs L1 = 1 L2 = 0.5 theta1 = linspace(0,90,10); theta2 = linspace(0,90,10); ct = 1 for i = 1 : length(theta1) THETA1 = theta1(i); for j = 1 : length(theta2) THETA2 = theta2(j); x0 = 0 y0 = 0 x1 = L1*cosd(THETA1);…
06 Jan 2022 11:03 AM IST