About V & V model V model known as verification & validation model it is derived from waterfall model it carry iterative testing for which each stage is test & check & wethere it meets customer requirement A. Vehicle speed calculation for ABS using…
Himanshu Upadhyay
updated on 29 Sep 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 Himanshu Upadhyay (11)
Project 1 - Loss calculation for a DC/DC converter-MATLAB
Ev refresher batch5 . . DC-DC converter buck DC-DC converters are also known as Choppers. Here we will have a look at the Step-Down Chopper or Buck converter which reduces the input DC voltage to a specified DC output voltage The input voltage source is connected to a controllable solid state device which operates…
30 Dec 2022 09:12 AM IST
Project 2 - Modeling of 3 phase Induction Motor Drive
EV REFRESHER BATCH-5 . . DIRECT TORQUE CONTROL OF AN INDUCTION MOTOR The electrical energy is supplied by a three-phase AC/DC diode rectifier connected to a 460 V, 60 Hz grid equivalent. The DC bus is connected to a three-phase, two-level converter. This converter generates the variable voltage and frequency required for…
30 Dec 2022 08:24 AM IST
Project 1- Traffic Jam Assistant Feature
Traffic Jam Assistant Feature Introduction to the Feature:: Traffic Jam Assistant is one of the most common feature in Advanced Driver Assistance System. Traffic Jam Assistanthelps the driver arrive more relaxed at their destination, even in dense traffic or in traffic jams. As a partially automatedcomfort function, the…
25 Oct 2022 04:22 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
#include #include // make a linked list node struct node { int data; struct node *next; } *Lone, *Ltwo, *unionll, *intersectionll; void initialize() { Lone = Ltwo = NULL; } //Inserts a node in front of a singly lL void insert(struct node **head, int d) { // Create a new Linked List node struct node* newNode = (struct node*)…
13 Oct 2022 12:35 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include #include char Red,Green,light,off,up,lever,down; void signallightRed() { light=Red; } void signallightGreen() { light=Green; } void signallightOff() { light=off; } void setLiverUp() { lever=up; } void setLiverDown() { lever=down; } int main() { printf("light is green \n"); signallightGreen(); printf("light is…
13 Oct 2022 10:58 AM IST
Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor
About V & V model V model known as verification & validation model it is derived from waterfall model it carry iterative testing for which each stage is test & check & wethere it meets customer requirement A. Vehicle speed calculation for ABS using…
29 Sep 2022 05:40 AM IST
Project 2 - Development of TFT Cluster Speedometer Software Component
1.Simulink model 2.SLDD file 3.Requirement tagging report 4. fixed-point toolbox 5.Model advisor - JMAAB compliance 6.SLDV error detection 7 Functional test case, MIL, SIL harness, coverage Reports 8 Run the analyzer test > confirm…
27 Sep 2022 01:45 PM IST
Project 2 Adaptive Cruise Control
As per requirement given we have design a simulink model here 3 requirement mentioned 1.Requirement 1– Lead Vehicle: 2.Requirement 2 – Drive Vehicle: 3.Requirement 3 – Adaptive Cruise Control Algorithm: requirement 1 here we get lead vehicle output by sum of result given by camera output+radarinput…
02 Sep 2022 12:28 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
22 Aug 2022 03:41 AM IST
Project - Data Handling and Interpolation
ANS % read data from xlsx fileA = xlsread('VI.xlsx');v= A(:,1); % read 1 column and all row data i= A(:,2); % read 2 column and all row dataxq= -17.3:0.1:0.9;yq= interp1(v,i,xq);plot(v,i,'o',xq,yq,':.'); xlabel('voltage(V)');ylabel('current(I)');%find…
05 Aug 2022 10:44 AM IST