Code : 1. #include <iostream>2. using namespace std; 3. string lights,lever;4. void setLightsRed(){5. lights = "Red";6. }7. void setLightsGreen(){8. lights= "Green";9. } 10. …
Sailaja Kotikela
updated on 09 Aug 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 Sailaja Kotikela (12)
Project 2 Thermal modeling of battery pack
Ans) objective : * For a 10 cell series lithium ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB. theory : * now a days lithium ion battery are mostly used in electric vehicles…
14 Sep 2022 02:33 PM IST
Project 1 Mechanical design of battery pack
Ans) AIM: Prepare a detailed battery pack of Cell: ANR26650M1-B, drawing along with its enclosure, and Battery pack capacity is 18kWh. State your assumptions. ABSTRACT: In this project, we are going to calculate the all parameters which are required for the build EV…
13 Sep 2022 07:13 PM IST
Week 7 State of charge estimation
Ans) Case 1 : Click on the Test Sequence Varient Block and select test case as 1 : Now by clicking on the BMS Sequence block we get the chart * When simulation will start, the model will be in driving condition. * After 3000 seconds…
12 Sep 2022 03:00 PM IST
Week 1 Understanding Different Battery Chemistry
1Ans) 2ndAns) What Are Lithium Batteries : * Lithium-ion batteries are used in most aspects of our everyday lives. Most devices like smartphones and laptops cannot operate without these batteries. Lithium-ion batteries have also become very important in the field of electromobility…
07 Sep 2022 08:40 PM IST
Project 2 - Integrate following sensors to the Dev Board
Ans) GPS :* Consumer grade off-the-shelf GPS sensors, also known as GPS mice (e.g., Garmin GPS), are usually connected over USB and implement a serial-to-USB connection with the helpof FTDI devices. * The Xsens GPS device can be connected through a serial-to-USB connection. Code :1. #include <iostream> 2. #include…
05 Sep 2022 04:57 PM IST
Project 1 - Implement a fully functional Queue in C language using Linked lists
Ans) 1. #include <bits/stdc++.h> 2. using namespace std; 3. struct QNode { 4. int data; 5. QNode* next; 6. QNode(int d) 7. { 8. data = d; 9. next = NULL; 10. } 11. }; 12. Struct Queue 13. { 14. QNode *front, *rear;…
03 Sep 2022 07:18 PM IST
Project 2 - V&V SW Analysis II
1Ans) What Is Static Code Analysis Static code analysis is a method of debugging by examining source code before a program is run. It’s done by analyzing a set of code against a set (or multiple sets) of coding rules. * Static code analysis and static analysis are often used…
26 Aug 2022 07:19 AM IST
Project 1 - V&V SW Analysis - I
Ans) AIM: * Write a Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements.(The product is still under development stage and is yet to be UA (User Acceptance ) tested…
25 Aug 2022 08:07 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Ans) Measuring distance with ultrasonic sensor : COMPONENTS AND SUPPLIES : 1. Ultrasonic Sensor HC - SR04 - 1 2. Juper wires …
17 Aug 2022 07:16 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Ans) 16*2 LCD CODE : Object : * Firstly , We see how to interface LCD 16×2 to Arduino Uno, but there are very complicated circuits, so in this tutorial, I'll show you how to reduce circuitry by using I2C module which is very compact & easy to connection.…
15 Aug 2022 06:39 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Code : 1. #include <iostream>2. using namespace std; 3. string lights,lever;4. void setLightsRed(){5. lights = "Red";6. }7. void setLightsGreen(){8. lights= "Green";9. } 10. …
09 Aug 2022 11:38 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 1 : 1. #include <stdio.h>2. #include <stdlib.h> 3. // A structure of linked list node4. struct node 5. {6. int data;7. struct node *next; 8. } *LLOne, *LLTwo, *unionLL,…
03 Aug 2022 10:18 PM IST