Shashank B Patil
updated on 17 Apr 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 Shashank B Patil (16)
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
#include #define TrigPin 8#define EchoPin 7 LiquidCrystal lcd(12, 11, 5, 4, 3, 2);long time;int distance; void setup(){ lcd.begin(16,2); pinMode(TrigPin,OUTPUT); pinMode(EchoPin,INPUT); lcd.print(" Ultra sonic");} void loop(){ digitalWrite(TrigPin, HIGH); delayMicroseconds(10); digitalWrite(TrigPin, LOW); delayMicroseconds(5);…
05 Jan 2023 04:53 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Master code #include <Wire.h>#include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(32,16,2); void setup(){ lcd.init(); lcd.backlight(); Wire.begin();} void loop(){ Wire.requestFrom(8,1); byte MasterReceive = Wire.read(); lcd.setCursor(2,0); //Sets Cursor at line one of LCD lcd.print(">> Master <<");…
03 Jan 2023 10:46 AM IST
Project 1 - V&V SW Analysis - I
As a Product owner,when long pressed the power button of the phone shall switch on with a company logo at the center of the screen.
13 Jul 2022 04:31 PM IST
Project 2 - V&V SW Analysis II
Pdf.attahced
30 Apr 2022 06:08 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
17 Apr 2022 07:04 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
17 Apr 2022 02:45 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
console:
01 Apr 2022 04:36 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
.c file attached
31 Mar 2022 02:52 PM IST
Week-11 Challenge: Braking
1) For a defined driving cycle, calculate the energy required for braking. Drive cycle taken inot consideration is UDDS i.e Urban Dynamometer Driving Schedule. The drive cycle is given below. Braking is calculated by the equation of the kinetic energy. E=(1/2)mv² here velocity is to be from final to initial.…
18 Mar 2022 03:53 AM IST
Week-7 Challenge: DC Motor Control
1A) Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’. Explanation: The Bipolar Junction Transistor(BJT) when used for power switching applications, operates as IGBT. When it is conducting(saturated region), a forward voltage Vf is developed between collector and emitter. So…
12 Mar 2022 03:48 AM IST
Week-6 Challenge: EV Drivetrain
1) Which types of power converter circuits are employed in electric and hybrid electric vehicle? Power converter: It is a electric circuit that converts one form of energy to another desired form as per the load. A converter may do one or more functions and give an output which differs frm input. Increase or decrease in…
09 Mar 2022 11:06 AM IST
Week-4 Challenge WOT Condition Part-2
1) What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type? Difference between Mapped and Dynamic model are as follows: Mapped Model Dynamic Model Uses set of steady state lookup tables to characterisize the engine performance. Model converts the…
15 Feb 2022 05:24 PM IST
Week-3 Challenge: ADVISOR Tool
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. ADVISOR Tool: Advanced Vehicle Simulator tool created by NREL(National Renewable Energy Laboratory) is uses a backward flow i.e drive cycle…
13 Feb 2022 03:38 PM IST
Project
Aim: To study and analyze the BAJA All-Terrain Vehicle(ATV) model using Simulink. Objectives: To prepare a technical report of Simulation of BAJA All-Terrain Vehicle(ATV) model using Continuously Variable Transmission drice(CVT) and Lookup table conditions. All Terrain Vehicle: …
16 Jan 2022 01:05 PM IST
Week - 4
1) Control logic of Washing Machine using Stateflow Let us first understand the working procedure of the Washing machine; Washing Machine used as clothes washer is Electrically controlled which includes the drum inside, motor, pump, inlet an outlet valves. It handles a various tasks like soaking, washing, rinsing and drying…
07 Jan 2022 04:02 PM IST
Week -2
1) The above model is created to show the operation of the switch and the transition output. Parameters used: a) Pulse Generator: Used to provide the input signal for the operation of switch and to create the square wave pulse. As the given challenge is to make the switch to be closed for 2sec and then released, below…
27 Dec 2021 01:20 PM IST