Project-1: Powertrain for aircraft in runways Aircraft Towing and Ground Handling BY SANKET AWASTHY Aim: To develop an efficient and safe aircraft towing and ground handling…
SANKET AWASTHY
updated on 07 Apr 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 SANKET AWASTHY (32)
Project 2 - Development of TFT Cluster Speedometer Software Component
Q.Develop the Simulink model based on the given requirements and also create SLDD file and link the same to the model. Perform the complete V and V workflow for the obtained model Development of TFT Cluster Speedometer Software Component Cluster Instrument receives the signals from other ECU via CAN bus interface.…
13 May 2023 11:43 AM IST
Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor
Develop the Simulink model based on the given descriptions for the below challenges and also create SLDD file and link the same to the model. Perform the complete V and V workflow for the obtained models. Wiper control system Develop Simulink/state flow model for wiper control system based on the given conditions.…
13 May 2023 11:41 AM IST
Project 2 Thermal modeling of battery pack
AIM: - To study the Thermal modeling of the battery pack with the help of MATLAB and SIMULINK. OBJECTIVES: - 1)For a 10-cell series lithium-ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB.this will be based…
13 Apr 2023 07:25 PM IST
Final Project: Design of an Electric Vehicle
Aim :- Create a MATLAB model of electric car which uses lithium ion battery and induction motor. Choose suitable blocks from Powertrain block set. Prepare a report about your model including following: Objectives: System-level configurations: The first objective is to create…
12 Apr 2023 02:33 PM IST
Project 2 Thermal modeling of battery pack
AIM: - To study the Thermal modeling of the battery pack with the help of MATLAB and SIMULINK. OBJECTIVES: - 1)For a 10-cell series lithium-ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB.this will be based…
12 Apr 2023 08:20 AM IST
Week-11 Challenge: Braking
For a defined driving cycle, calculate the energy required for braking.Braking energy is the kinetic energy that needs to be dissipated to slow down or stop a moving vehicle. It can be calculated using the formula: Braking Energy = (1/2)mv^2, where m is the total mass of the vehicle (including payload) in kg, and…
09 Apr 2023 04:32 AM IST
Project 2 Thermal modeling of battery pack
AIM: - To study the Thermal modeling of the battery pack with the help of MATLAB and SIMULINK. OBJECTIVES: - 1)For a 10-cell series lithium-ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB.this will be based…
07 Apr 2023 05:01 PM IST
Week-7 Challenge: DC Motor Control
1. A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’. A. The MATLAB demo model named 'Speed control of a DC motor using BJT H-bridge' is a simulation model that demonstrates the speed control of a DC motor using a BJT H-bridge circuit. The model consists of a DC motor,…
05 Apr 2023 10:34 AM IST
Week-6 Challenge: EV Drivetrain
1. Which types of power converter circuits are employed in an electric and hybrid electric vehicle? Electric and hybrid electric vehicles employ various types of power converter circuits to efficiently manage power flow between different parts of the vehicle's electrical system. Some common types…
05 Apr 2023 10:15 AM IST
Week-4 Challenge WOT Condition Part-2
1. What is the difference between the mapped and dynamic models of the engine, motor, and generator? How can you change the model type? Ans: powertrain block set provides two types of combustion engine models: mapped and dynamic. Mapped engine: Mapped models and dynamic models are two approaches to modeling an engine,…
05 Apr 2023 04:27 AM IST
Project 1 Mechanical design of battery pack
AIM: The project is to design a battery pack with a capacity of 18 kWh using ANR26650M1-B cells. The battery pack will be arranged in a 12S6P configuration, with a total of 72 cells. For the battery pack, we will assume the following: Cell: ANR26650M1-BBattery pack capacity: 18 kWhNumber of cells: 72 (arranged in a 12S6P…
03 Apr 2023 12:36 PM IST
Project 1 Mechanical design of battery pack
AIM: The project is to design a battery pack with a capacity of 18 kWh using ANR26650M1-B cells. The battery pack will be arranged in a 12S6P configuration, with a total of 72 cells. For the battery pack, we will assume the following: Cell: ANR26650M1-BBattery pack capacity: 18 kWhNumber of cells: 72 (arranged in a 12S6P…
02 Apr 2023 09:54 AM IST
Week-3 Challenge: ADVISOR Tool
Aim: To use the ADVISOR tool for simulation. ADVISOR is a simulation tool developed by the National Renewable Energy Laboratory (NREL) for modeling and simulating advanced vehicle powertrains. It is typically used in Matlab/Simulink environment, and requires various input files such as vehicle data files (.in),…
01 Apr 2023 02:03 PM IST
Project 2 Thermal modeling of battery pack
AIM: - To study the Thermal modeling of the battery pack with the help of MATLAB and SIMULINK. OBJECTIVES: - 1)For a 10-cell series lithium-ion battery model, simulate the thermal effects and compare life cycle performance…
31 Mar 2023 05:22 PM IST
Week 7 State of charge estimation
Simulate the 3 test cases from the harness dashboard and write a detailed report on the results:To simulate the test cases, you can follow the instructions in the file exchange link provided and use the BMS model to run the simulations. The test cases are designed to evaluate the BMS performance under different conditions,…
31 Mar 2023 09:56 AM IST
Project 1 Mechanical design of battery pack
AIM: The project is to design a battery pack with a capacity of 18 kWh using ANR26650M1-B cells. The battery pack will be arranged in a 12S6P configuration, with a total of 72 cells. For the battery pack, we will assume the following: Cell: ANR26650M1-BBattery pack capacity: 18 kWhNumber of cells: 72 (arranged…
30 Mar 2023 01:04 PM IST
Project 3
Build an object-oriented library which can be used to track automobile maintenance. There can be different car types such as petrol, diesel, gas, electric etc., This library should be able to support at least three of the car types. Maintenance tasks include activities like oil change or replace oil filter, replace air…
16 Mar 2023 11:12 AM IST
Project 2 - Integrate following sensors to the Dev Board
https://coral.ai/docs/dev-board/datasheet/ Integrate following sensors to the Dev Board: GPS IMU Sensor Achieve the following task with the help of these sensors: The microcontroller should automatically detect sensor’s (GPS + IMU) connection and disconnection and print suitable string over the terminal (Serial…
08 Mar 2023 08:15 AM IST
Project 1 - Implement a fully functional Queue in C language using Linked lists
CODE: #include <stdio.h>#include <stdlib.h> // Queue nodestruct QueueNode { int data; struct QueueNode* next;}; // Queue data structurestruct Queue { struct QueueNode *front, *rear;}; // Create a new nodestruct QueueNode* createNode(int data) { struct QueueNode* newNode = (struct QueueNode*)malloc(sizeof(struct…
08 Mar 2023 07:55 AM IST
Week 1 Understanding Different Battery Chemistry
1.Prepare a table which includes materials & chemical reactions occurring at the anode and cathode of LCO, LMO, NCA, NMC, LFP and LTO type of lithium ion cells.Give your detailed explanation on it Answer: Battery: is a element which convert stored chemical energy to the useful electrical energy. …
21 Feb 2023 09:15 AM IST
Project 2 - V&V SW Analysis II
Question 1: Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them Load a .c file : …
20 Feb 2023 07:52 AM IST
Project
OBJECTIVE: To study the model Baja-all-terrain-vehicle-atv-model to perform system-level simulation of ATV and to prepare a technical report explaining the model properties and comment on the results. SOFTWARE : Matlab,…
18 Feb 2023 07:28 AM IST
Week - 4
Implement control logic of a “washing machine” using Stateflow as per given sequence: If the power supply is available, the system gets activated If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time of 100s. Then rinsing…
17 Feb 2023 05:04 AM IST
Week -2
Make a Simulink model of Doorbell using solenoid block with the following details: In the above arrangement, when the switch is closed the electromagnet receives electrical power from the battery and pulls the metal arm to hit the bell producing sound. Create a situation where the switch is…
12 Feb 2023 08:48 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear AIM: Implement the Code for controlling the retraction and extension of Airplane’s landing gear. In this project, controlling the retraction and extension of Airplane’s landing gear…
03 Feb 2023 07:14 PM IST
Project 1 - V&V SW Analysis - I
INTRODUCTION: A Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested…
31 Jan 2023 09:36 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
project link: https://www.tinkercad.com/things/aA24ehScEWL objective of the Project: In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR84) and also smoothen the sensor data using moving average filter”. Goals: Measuring the distance…
30 Jan 2023 01:14 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
AIM In this project implementing the Code for “Interfacing a 16*2 LCD with two Arduino’s (one for Master and one for Slave) using Inter-Integrated Circuit (I2C) communication protocol” by sending the message to LCD using I2C communication protocol and display the message on LCD screen. Key Highlights…
24 Jan 2023 01:47 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
AIM : In this project we have to write a Code in Microchipp studio to implement it for measuring the distance of an object using ultra sonic distance sensor HC-SR04. To measure distance of an object using an HC-SR04 ultrasonic sensor, we need to use the following steps: Connect the trigger of the pin of the sensor…
24 Jan 2023 07:46 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Overview of the Project: Implement a system on the simulator for controlling a DC motor using L293 motor driver, monitor its status and print the running status of motor on the LCD Display. Goals: Implement a system on simulator for Controlling the DC motor using L293 motor driver. Displaying the running status…
24 Jan 2023 06:04 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
OBJECTIVE : In this project 1 of Embedded C essentials I write a C program to Create a user defined function to implement the user interface for working with mathematical set theory find the union and intersection of elements of two sets by using linked list. What is linked list ? A linked list is a data structure…
21 Jan 2023 10:55 AM IST