Nishant Kumar Tyagi
Skills Acquired at Skill-Lync :
21 Projects
Week -2
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…
10 Dec 2021 03:01 PM IST
Week - 4
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…
28 Dec 2021 06:12 PM IST
Project
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…
21 Feb 2022 07:58 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
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++)…
21 Feb 2022 12:01 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#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[])…
26 Feb 2022 05:53 AM IST
Week-3 Challenge: ADVISOR Tool
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)…
01 Mar 2022 06:48 PM IST
Week-6 Challenge: EV Drivetrain
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…
04 Mar 2022 05:43 PM IST
Week-7 Challenge: DC Motor Control
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…
06 Mar 2022 07:03 PM IST
Week-11 Challenge: Braking
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…
10 Oct 2022 10:41 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
#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,…
02 Apr 2025 08:37 AM IST
Project-1: Powertrain for aircraft in runways
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…
02 Apr 2025 08:47 AM IST
Final Project: Design of an Electric Vehicle
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
02 Apr 2025 08:48 AM IST
Week-4 Challenge WOT Condition Part-2
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…
02 Apr 2025 08:50 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
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…
02 Apr 2025 08:55 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
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,…
02 Apr 2025 09:04 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
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() { …
02 Apr 2025 09:10 AM IST
Project 1 - V&V SW Analysis - I
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…
02 Apr 2025 11:24 AM IST
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…
02 Apr 2025 11:36 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
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…
02 Apr 2025 04:47 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
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…
02 Apr 2025 04:52 PM IST
Project 3
#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),…
02 Apr 2025 05:02 PM IST
7 Course Certificates
Introduction to Hybrid Electric Vehicle using MATLAB and Simulink
Software Verification and Validation and System Testing for Hand Code
Academic Qualification
B.Tech
Neelkanth Group of Institutions
21 Aug 2016 - 19 Sep 2020
12th
S.v.m.inter College
01 Apr 2015 - 01 Jun 2016
10th
S.v.m.inter College
01 Mar 2013 - 15 Jul 2014
Here are the courses that I have enrolled
13 Hours of Content
Similar Profiles
Ladder of success cannot be climbed with hands in pocket.
The Future in Motion
Give more than what you get you will get more than what you gave
Avid learner