Q1.A) The H-bridge connects to a power supply at the top end and is grounded at the bottom end. Each of the four switching elements can be toggled on or off independently, with certain limitations. While the load can vary, H-bridges are…
Nestin Gregorios Sunny
updated on 19 Jul 2024
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 Nestin Gregorios Sunny (15)
Final Project: Design of an Electric Vehicle
AIMThe aim of this project is to create a MATLAB model of an electric car utilizing a battery and a DC motor using the Powertrain Block set. OBJECTIVEThe objective is to develop a MATLAB model of an electric car employing the Powertrain Block set, and subsequently, prepare a comprehensive report encompassing the following…
23 Jul 2024 08:56 AM IST
Project-1: Powertrain for aircraft in runways
PART A 1) Search and List Out the Total Weight of Various Types of AircraftsUnderstanding the total weight of aircraft is crucial in aviation, influencing both construction and operational efficiency. Excessive weight compromises aircraft performance and safety margins, particularly during emergencies. The maximum…
22 Jul 2024 01:11 PM IST
Week-7 Challenge: DC Motor Control
Q1.A) The H-bridge connects to a power supply at the top end and is grounded at the bottom end. Each of the four switching elements can be toggled on or off independently, with certain limitations. While the load can vary, H-bridges are…
19 Jul 2024 03:35 PM IST
Week-6 Challenge: EV Drivetrain
Q1) A power converter serves as an essential component in electrical engineering, facilitating the transformation of electric energy from one form to another, tailored to meet specific load requirements. These converters perform various functions, altering the output from the input, whether by adjusting voltage magnitude,…
19 Jul 2024 11:04 AM IST
Week-4 Challenge WOT Condition Part-2
Q1) In the domain of powertrain modeling and simulation, two primary models are commonly employed: Mapped Model and Dynamic Model. Both models serve to simulate the behavior of the powertrain system, albeit with different approaches and levels of accuracy.Mapped Model:The Mapped Model operates on pre-assigned data points…
17 Jul 2024 07:36 AM IST
Week-3 Challenge: ADVISOR Tool
AIM:Utilize the ADVISOR tool to assess the feasibility of the EV_defaults_in running for a 45 km distance with a 500 kg cargo mass, maintaining default conditions. Additionally, run simulations with varied battery capacities and conduct a gradeability test using the PRIUS_Jpn_defaults_in file. PROCEDURE:Study 1 -…
16 Jul 2024 07:56 AM IST
Project 2 - V&V SW Analysis II
1.Aim Perform Static Code Review Analysis for: "C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c" Generate Code review report and upload them. Static Code Review Analysis LDRA TBurn is a tool used for test case management,test execution ,and the collection and analaysis of coverage data in software development.…
16 Oct 2023 07:39 AM IST
Project 1 - V&V SW Analysis - I
Black Box Testing Black box testing is a software testing technique that focuses on testing the functionality of a software application without knowing its internal structure, logic, or code implementation. The tester treats the software as a "black box" and tests its functionality by providing inputs and observing the…
06 Oct 2023 11:21 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Aim The aim of this project is to measure the distance of an object using an Ultrasonic Distance Sensor (HC-SR04) interfaced with an AVR microcontroller (Atmega328) and communicate the distance measurements via UART. Components Required Atmega 328 Ultrasonic Distance Sensor - HC-SR04 Fixed Voltage Sorce - 5V Potentiometer…
21 Sep 2023 10:34 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Aim The aim of this project is to implement a system on the simulator to control a DC motor using PWM with the L293 motor driver. The project also involves monitoring the running status of the DC motor and displaying it on an LCD screen. Components Required Atmega 32 Motor Driver - L293 DC Motor Pushbutton(2) Switch- ON…
20 Sep 2023 03:29 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Aim The aim of this project is to measure the distance of an object using an ultrasonic distance sensor (28015 Ping) and apply a moving average filter to smoothen the sensor data. The project utilizes an Arduino board to process the sensor readings and display the distance on an LCD screen. Components Required Arduino…
09 Aug 2023 05:34 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Aim To implement 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. Components Required Arduino Uno R3 (2) LCD 16 x 2…
08 Aug 2023 03:55 PM IST
Project 3
PROJECT 3 CODE vehicle.h #ifndef vehicle_H_#define vehicle_H_ //preprocessor directive#include…
13 Jul 2023 12:45 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
CODE gears.h #ifndef GEARS_H_ #define GEARS_H_ //preprocessor directive #include<stdio.h> //function declaration void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear(); //enum for State_Type…
07 Jul 2023 11:45 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
CODE settheory.h //defining a header file to store all libraries used for this project #ifndef SETTHEORY_H_ #define SETTHEORY_H_ //preprocessor directives #include<stdio.h> //header file for std input and output #include<stdlib.h> //header file for malloc struct NODE //node for linked list { int data;//data…
03 Jul 2023 02:16 PM IST