Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 2 - V&V SW Analysis II

Perform Static Code Review Analysis on Testrain.c and generate a code review report.2. Conduct Integration Testing on all .c files in the Cashregister_6.0 folder, using both manual and automatic test cases (via TBExtreme).3. Store test cases as a .tcf file and upload an image showing the storage location.---Task 1: Static…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Nishant Kumar Tyagi (21)

    Project 3

    Objective:

    #include <iostream>#include <vector>#include <memory>using namespace std;enum Type { GAS, DIESEL, ELECTRIC };class Vehicle {protected:    string make, model;    int year, odometer;public:    Vehicle(string mk, string mdl, int yr, int odo) : make(mk), model(mdl), year(yr),…

    calendar

    02 Apr 2025 05:02 PM IST

      Read more

      Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

      Objective:

      Overview of the Project:In this project, the retraction and extension of an airplane’s landing gear are controlled using a Finite State Machine (FSM). FSM is a mathematical model of computation that provides an efficient algorithm for managing state transitions. The system ensures smooth and reliable gear operations by…

      calendar

      02 Apr 2025 04:52 PM IST

        Read more

        Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

        Objective:

        Project: Mathematical Set Theory Implementation in CThis project implements interfaces for Set Theory using Linked Lists in C. It allows users to input two lists of data and calculates the Union and Intersection of the two sets.---???? Goals1. Implement Set Theory operations (Union & Intersection) using Linked Lists in…

        calendar

        02 Apr 2025 04:47 PM IST

          Read more

          Project 2 - V&V SW Analysis II

          Objective:

          Perform Static Code Review Analysis on Testrain.c and generate a code review report.2. Conduct Integration Testing on all .c files in the Cashregister_6.0 folder, using both manual and automatic test cases (via TBExtreme).3. Store test cases as a .tcf file and upload an image showing the storage location.---Task 1: Static…

          calendar

          02 Apr 2025 11:36 AM IST

            Read more

            Project 1 - V&V SW Analysis - I

            Objective:

            Test Plan for Mobile Phone Features (Black Box Testing)1. IntroductionThis test plan outlines the strategy, scope, and approach for testing the features of the new mobile phone. The product is in the development stage and is yet to undergo User Acceptance Testing (UAT). The testing will be Black Box Testing, ensuring that…

            calendar

            02 Apr 2025 11:24 AM IST

              Read more

              Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

              Objective:

              C Code for HC-SR04 with ATmega328p using Input Capture Mode#include <avr/io.h>#include <util/delay.h>#include <avr/interrupt.h>#define F_CPU 16000000UL#define TRIG_PIN PB1#define SOUND_SPEED 34300 // cm/svolatile uint16_t start_time, end_time;volatile uint8_t capture_flag = 0;void Timer1_ICU_Init() { …

              calendar

              02 Apr 2025 09:10 AM IST

                Read more

                Project 1 - Controlling a DC motor using PWM and monitoring its Running status

                Objective:

                Here’s an Arduino-based simulation project to control a DC motor using an L293D motor driver and display its running status on an LCD.---Components Used:Arduino UnoL293D Motor Driver IC16x2 LCD Display (I2C)DC MotorPush Buttons (for direction control)Potentiometer (for speed control via PWM)Power Supply (5V for logic,…

                calendar

                02 Apr 2025 09:04 AM IST

                  Read more

                  Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

                  Objective:

                  Here is the Arduino code to measure the distance using the 28015 Ping Ultrasonic Distance Sensor and smoothen the data using a Moving Average Filter.---Arduino Code:#define TRIGGER_PIN 9 // Pin to trigger the ultrasonic sensor#define ECHO_PIN 10 // Pin to receive echo signal#define WINDOW_SIZE 5 // Moving Average Window…

                  calendar

                  02 Apr 2025 08:55 AM IST

                    Read more

                    Week-4 Challenge WOT Condition Part-2

                    Objective:

                    1. Difference Between Mapped and Dynamic Models for Engine, Motor, and Generator2. How to Change Model Type?You can change the model type in Powertrain Blockset using these steps:1. Open the Simulink HEV Reference Application.2. Navigate to Passenger Car > Electric Plant > Motor & Generator.3. Change the parameter…

                    calendar

                    02 Apr 2025 08:50 AM IST

                    • HEV
                    Read more

                    Final Project: Design of an Electric Vehicle

                    Objective:

                    Plan for Implementation:1. Develop Simulink ModelBattery (Lithium-ion)DC MotorMotor ControllerVehicle Body and TiresDriver Input (Throttle & Brake)2. Report PreparationExplanation of system configurationKey parameters used in the modelSimulation results with plotsConclusion summarizing findings

                    calendar

                    02 Apr 2025 08:48 AM IST

                      Read more

                      Project-1: Powertrain for aircraft in runways

                      Objective:

                      Part A: Conceptual Questions1. Total Weight of Various Types of AircraftAircraft weight classifications depend on their type and purpose. Below are typical weight ranges:2. Difference Between Ground Speed and Air SpeedAirspeed: The speed of an aircraft relative to the air around it.Ground Speed: The speed of an aircraft…

                      calendar

                      02 Apr 2025 08:47 AM IST

                      Read more

                      Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

                      Objective:

                      #include <Wire.h>#include <LiquidCrystal_I2C.h>LiquidCrystal_I2C lcd(0x27, 16, 2); // Change 0x27 to your LCD's I2C address if neededvoid setup() {    lcd.init(); // Initialize the LCD    lcd.backlight(); // Turn on backlight    lcd.setCursor(0, 0);    lcd.print("Hello,…

                      calendar

                      02 Apr 2025 08:37 AM IST

                        Read more

                        Week-11 Challenge: Braking

                        Objective:

                        Q.1 For a defined driving cycle, calculate the energy required for braking. Solution:-  Why electric motor can't develop braking torque at high speed similar to starting how electric and mechanical brakes are coordinated?     Eectric motor can't develop braking torque at high speed similar to starting, because Braking…

                        calendar

                        10 Oct 2022 10:41 AM IST

                        Read more

                        Week-7 Challenge: DC Motor Control

                        Objective:

                         Q.1 A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’.     B. Comment on the armature current shoot-up from the scope results.     C. Refer to the help section of ‘The Four-Quadrant Chopper DC Drive (DC7) block’. Compare it with the H-bridge…

                        calendar

                        06 Mar 2022 07:03 PM IST

                        Read more

                        Week-6 Challenge: EV Drivetrain

                        Objective:

                        Q.1 Which types of power converter circuits are employed in electric and hybrid electric vehicle?    Solution:  what is Electric vehicle: The electric motor gets energy from a controller, which regulates the amount of power—based on the driver's use of an accelerator pedal. The electric…

                        calendar

                        04 Mar 2022 05:43 PM IST

                        Read more

                        Week-3 Challenge: ADVISOR Tool

                        Objective:

                        Q.1 For EV_defaults_in file, if cargo mass is 500 kg with all other default conditions, can the vehicle travel for 45 km with FTP drive cycle? Conclude your observations. Solution: 1.for that challage we need to download ADVISOR TOOL. 2.extract tool and go to matlab after extract  select (METRIC) select (Asvisior.m)…

                        calendar

                        01 Mar 2022 06:48 PM IST

                          Read more

                          Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                          Objective:

                          #include<stdio.h> #define SIZE 50 int S1[SIZE],S2[SIZE],S3[SIZE]; void accept(int S[],int n) {     int i;     for(i=1;i<=n;i++)         scanf("%d",&S[i]);     S[0]=n; }   void display(int S[])…

                          calendar

                          26 Feb 2022 05:53 AM IST

                            Read more

                            Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)

                            Objective:

                            Q.1Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) #include<stdio.h> #define SIZE 50 int S1[SIZE],S2[SIZE],S3[SIZE]; void accept(int S[],int n) {     int i;     for(i=1;i<=n;i++)…

                            calendar

                            21 Feb 2022 12:01 PM IST

                              Read more

                              Project

                              Objective:

                              Carry out a system-level simulation of an all-terrain vehicle.  Download the model from the given link:  https://www.mathworks.com/matlabcentral/fileexchange/70576-baja-all-terrain-vehicle-atv-model Prepare a technical report explaining the model properties & comments on the results.  solution: All terrarin…

                              calendar

                              21 Feb 2022 07:58 AM IST

                                Read more

                                Week - 4

                                Objective:

                                Q.1 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…

                                calendar

                                28 Dec 2021 06:12 PM IST

                                  Read more

                                  Week -2

                                  Objective:

                                  Q.1.Make a Simulink model of Doorbell using solenoid block with the following details:  Solution: AIM: Create a simulink model of Doorbell using solenoid block. this is the simulink model for doorbell. in this above figure we can see diffrent diffrent types of block and diffrent diffrent colour. so…

                                  calendar

                                  10 Dec 2021 03:01 PM IST

                                    Read more
                                    Showing 1 of 21 projects