#include <iostream>#include <vector>#include <string> enum class Type { GAS, DIESEL, ELECTRIC}; class Vehicle {protected: std::string make; std::string model; int year; int odometer; public: Vehicle(const std::string& make, const std::string& model, int year, int odometer) : make(make), model(model),…
Ashwitha Kanthala
updated on 09 Jun 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 Ashwitha Kanthala (9)
Project 3
#include <iostream>#include <vector>#include <string> enum class Type { GAS, DIESEL, ELECTRIC}; class Vehicle {protected: std::string make; std::string model; int year; int odometer; public: Vehicle(const std::string& make, const std::string& model, int year, int odometer) : make(make), model(model),…
09 Jun 2023 12:30 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include<stdio.h> #include<stdlib.h> /*Function used in this project*/ void Init_State_Machine(); //function declartion void Gear_Down(); void Checking_Before_Takeoff(); void Raising_Gear(); void Gear_Up(); void Checking_Before_Landing(); void Lowering_Gear(); typedef enum State //enum used to…
07 Jun 2023 04:29 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
1 #include <stdbool.h> #include <stdio.h> #include <stdlib.h> // Link list node struct Node { int data; struct Node* next; }; //function declaration void push(struct Node** head_ref, int new_data); int isPresent(struct Node* head, int data); // Function…
06 Jun 2023 08:16 AM IST
Project 2 - Development of TFT Cluster Speedometer Software Component
Aim: To develop Cluster Instrument receives the signals from other ECU via CAN bus interface. It also receives commands from the driver via steering wheel buttons. The signals are then processed by the Cluster ECU, after which the Cluster ECU may send the vehicle information to the LCD or light the LEDs and so forth, according…
02 Jun 2023 07:32 AM IST
Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor
1).Wiper control system: -Develop Simulink/state flow model for wiper control system based on the given conditions. -Description of Challenge: If the density of the rain is low, then wiper rotates with low speed & the output signal should be 100rpm If the density of the rain is medium, then wiper rotates with medium speed…
01 Jun 2023 04:14 PM IST
Project 2-Highway Assistant-Lane Changing Assistant
Aim: Model Development of a feature of Highway Assistant-Lane Changing Assistant using MATLAB and Simulink as per MAAB guidelines, producing Model Advisor Report as well as generating Code using AUTOSAR Coder. Requirement No 1 [Highway_DisplayUnit]: Inputs to this particular subsystem are “Highway_Input_Signal”,…
08 May 2023 10:16 AM IST
Project 1- Traffic Jam Assistant Feature
AIM Model Development of a single feature of Traffic Jam Assist using MATLAB & Simulink as well as Code Generation using Embedded Coder Requirement No 1: Input Signal “Input_Voltage” is compared against voltage values “VOLTAGE_MINIMUM_RANGE” & “VOLTAGE_MAXIMUM_RANGE”. Incoming input signal “Input_Voltage” must be greater…
24 Apr 2023 09:22 AM IST
Project 2 Adaptive Cruise Control
Aim: To develop an Adaptive Cruise Control feature as per the Requirement Document using MATLAB Simulink. Requirement Document: 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).…
18 Apr 2023 09:21 AM IST
Project 1 (Mini Project on Vehicle Direction Detection
Aim of the Project:- To identify the direction of the vehicle based on the camera input. i) Development of the Required Model:- Requirement-1 :- Steering wheel input as yaw rate (Signal name: SteeringWheel_YawDegreeInput) is the input for this system. This is compared against 3 angular values,…
11 Apr 2023 08:59 AM IST