1. Design a battery pack for a car roughly 150 Kw with 120 V. Use 3500 mAh 3.6V nominal NMC chemistry cell.a. Design the battery pack configuration. b. Draw the BMS topology for this battery pack.a) Given, we have…
Kotesh Mogudala
updated on 24 May 2024
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 Kotesh Mogudala (12)
Project 2
a) Max. heat generation of the battery pack is Heat generation (Wh) = *R*t.I = 0.896 AmpsR = 2m Ωt = 120 secs = 0.03333 hoursHeat generation (W sec) = *0.002*120 =…
24 May 2024 01:04 PM IST
Project 1
1. Design a battery pack for a car roughly 150 Kw with 120 V. Use 3500 mAh 3.6V nominal NMC chemistry cell.a. Design the battery pack configuration. b. Draw the BMS topology for this battery pack.a) Given, we have…
24 May 2024 12:40 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Live Batch (Preeti Mallikarjun):
01 Aug 2023 12:31 PM IST
Project 3
Live Batch ( Preeti Mallikarjun ):
22 May 2023 11:26 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Master Aduino Code: #include <Wire.h>#include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x3F, 16, 2); // set the LCD address to 0x3F for a 16 chars and 2 line display void setup() { Wire.begin(); // join i2c bus (address optional for master) lcd.init(); // initialize the LCD lcd.backlight(); // turn on the…
22 May 2023 07:39 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
CODE: CODE: const int samples = 5; // Number of measurements to take and averageint data[samples]; // Array to store the measurementsint index = 0; // Index to keep track of the current measurementint total = 0; // Running total of all measurementsint average = 0; // Calculated average distanceint duration = 0; // Duration…
16 Apr 2023 02:48 PM IST
Project 2 - V&V SW Analysis II
Live Batch (Preeti Mallikarjun): I) 1. Connect to the Ethernet Server to any User from no.1 to no.47 2. Open Remote Desktop Connection with the same user name. 3. Open LDRA tool of version either 10.0.3 or 9.8.3 . 4. Click 'source' file then click on 'single file' and follow the path given below. Documents-> LDRAEE…
12 Mar 2023 09:10 AM IST
Project 1 - V&V SW Analysis - I
Live Batch (Preeti Mallikarjun):
03 Mar 2023 10:33 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Live Batch (Preeti Mallikarjun):
20 Feb 2023 12:19 PM 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 #include // Link list node struct Node { int data; struct Node* next; }; //function declaration void push(struct Node** head_ref, int new_data); int isPresent(struct Node* head, int data); // Function to get union of two linked lists head1 and head2 struct Node* getUnion(struct Node* head1, struct…
03 Feb 2023 09:57 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
1. AIM: To control the retraction and extension of Airplane’s landing gear can be implemented using Finite State Machine (FSM). FSM is the most efficient algorithm which is mathematical model of computation. CODE: #include <stdio.h> // Functions Declarationvoid Start_State_Machine();void…
10 Jan 2023 12:34 PM 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 <stdbool.h> #include <stdio.h> #include <stdlib.h> // Link list node struct Node { int data; struct Node* next; }; //function declaration void push(struct Node** head_ref, int new_data); int isPresent(struct Node* head, int data); // Function to get union of two linked…
03 Dec 2022 05:06 PM IST