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 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

/* Speed of sound: v= 340m/s v= 0.034cm/microseconds Time=distance/speed: t=s/v=10/0.034=294microseconds Distance in cm: s=t*0.034/2 */ const int trigPin =9; const int echoPin =10; long duration; int distance; void setup() { pinMode (trigPin,OUTPUT); pinMode(echoPin,INPUT); Serial.begin(9600); } void loop() { digitalWrite(trigPin,LOW);…

    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 jitender kumar (23)

    Project-1: Modelling an electric Car with Li-ion battery

    Objective:

    Aim:Create a MATLAB model of electric car which uses lithium ion battery and suitable motor.   Objective: Create a MATLAB model of electric car which uses lithium ion battery and suitable motor. Choose suitable blocks from Simscape or Powertrain block set. Implement the vehicle speed control using PI controller and generate…

    calendar

    23 May 2023 04:27 PM IST

    • MATLAB
    Read more

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

    Objective:

    /* Speed of sound: v= 340m/s v= 0.034cm/microseconds Time=distance/speed: t=s/v=10/0.034=294microseconds Distance in cm: s=t*0.034/2 */ const int trigPin =9; const int echoPin =10; long duration; int distance; void setup() { pinMode (trigPin,OUTPUT); pinMode(echoPin,INPUT); Serial.begin(9600); } void loop() { digitalWrite(trigPin,LOW);…

    calendar

    06 May 2023 09:28 AM IST

      Read more

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

      Objective:

      MASTER //I2C MASTERCODE //I2C communication between two arduino #include<Wire.h> //Library for I2C Communication functions #include<LiquidCrystal.h> //Library for LCD display function LiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() { lcd.begin(16,2);…

      calendar

      06 May 2023 09:27 AM IST

        Read more

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

        Objective:

        Ans: Code: #include void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear(); static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear}; typedef enum State…

        calendar

        28 Dec 2022 09:49 AM 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:

          Ans: #include<stdio.h> int A[30],B[30],C[60]; void Creat(int S[],int n) { int i; for(i=1;i<=n;i++) scanf("%d",&S[i]); S[0]=n; } void print(int S[]) { int n,i; n=S[0]; printf("{ "); for(i=1;i<=n;i++) printf("%d ",S[i]); printf("}"); } int elements(int S[],int x) { int n,i; n=S[0]; for(i=1;i<=n;i++) if(S[i]==x)…

          calendar

          24 Dec 2022 07:25 AM IST

            Read more

            Project 2-Highway Assistant-Lane Changing Assistant

            Objective:

            Aim: Model Development of Feature of Highway Assistant-Lane Changing Assistant Using MATLAB and SIMULINK as per the MAAB guidelines, producing Model Advisor Report as well as generating code using AUTOSAR Coder.   Objective: Model Development in MATLAB Simulink as per the MAAB Guidelines. Code Generation using AUTOSAR…

            calendar

            04 Jul 2022 06:33 PM IST

            Read more

            Project 1- Traffic Jam Assistant Feature

            Objective:

            Aim: To develop one specific requirement of Traffic Jam Assistant algorithm which would predominantly feature in the IPC algorithm. Objective: This model must be developed in MATLAB Simulink as per MBD guidelines. Code Generation Profile must be in Embedded Coder. Simulink Data Dictionary must be created for the model…

            calendar

            06 Jun 2022 06:19 PM IST

            Read more

            Project 2 Adaptive Cruise Control

            Objective:

            Main Project – Adaptive Cruise Control (ACC) General Overview: Adaptive Cruise Control Feature for passenger cars allows the host vehicle to adapt to the speed in line with the flow of traffic. Driving in heavy traffic or keeping a safe distance to the preceding vehicle calls for a high level of concentration. The…

            calendar

            18 May 2022 05:39 AM IST

            Read more

            Project 1 (Mini Project on Vehicle Direction Detection

            Objective:

                                                          Project: 1 1) Aim: To create a Simulink Model…

            calendar

            15 May 2022 05:25 PM IST

            Read more

            Project 2 Thermal modeling of battery pack

            Objective:

            Project-2   Aim: 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: A Lithium-ion (Li-ion) battery is a type of rechargeable battery used in electric vehicles and a number of portable electronics.…

            calendar

            02 May 2022 09:27 AM IST

            Read more

            Project 1 Mechanical design of battery pack

            Objective:

              Objective: Battery pack capacity: 18 kWh, Cell: ANR26650M1-B  Prepare a detailed battery pack drawing along with its enclosure. State your assumptions. Solution: Abstract: In this project we are going to calculate all the parameters which are required for the build EV Battery pack. We are using the Cell: ANR26650M1-B…

            calendar

            01 May 2022 11:27 AM IST

            Read more

            Week 7 State of charge estimation

            Objective:

            Challenge-7   Objective: Simulate the 3 test cases from the harness dashboard and write a detailed report on the results. What is coulomb counting? Refer to the above model and explain how BMS implements coulomb counting for SOC estimation?   Answer 1: MATLAB model to simulate the 3 test conditions from harness dashboard…

            calendar

            30 Apr 2022 07:55 PM IST

            Read more

            Week 1 Understanding Different Battery Chemistry

            Objective:

            Question:1  Prepare a table which includes materials & chemical reactions occurring at the anode and cathode of LCO, LMO, NCA, NMC, LFP and LTO type of lithium ion cells.Give your detailed explanation on it. Answer: A lithium-ion battery or Li-ion battery is a type of rechargeable battery composed of cells in…

            calendar

            26 Apr 2022 05:26 PM IST

              Read more

              Project-1: Powertrain for aircraft in runways

              Objective:

               PROJECT:1  Powertrain For Aircraft In Runways   PART A: Search and list out the total weight of various types of aircrafts.  Is there any difference between ground speed and air speed? Why is it not recommended to use aircraft engine power to move it on the ground at Airport?  How is an aircraft…

              calendar

              22 Apr 2022 08:26 AM IST

                Read more

                Final Project: Design of an Electric Vehicle

                Objective:

                Que 1: Answer: Theory: Electric vehicle:An electric vehicle (EV) is one that operates on an electric motor, instead of an internal-combustion engine that generates power by burning a mix of fuel and gasses. Therefore, such a vehicle is seen as a possible replacement for current-generation automobiles, in order to address…

                calendar

                21 Apr 2022 04:48 PM IST

                Read more

                Week-11 Challenge: Braking

                Objective:

                Que 1: Answer: A brake system is designed to slow and halt the motion of a vehicle. To do this, various components within the brake system must convert the vehicle's moving energy into heat. This is done by using friction. Friction is the resistance to movement exerted by two objects on each other. Below are the functions…

                calendar

                19 Apr 2022 10:00 PM IST

                Read more

                Week-7 Challenge: DC Motor Control

                Objective:

                attached the docx file of all the answers & also a simulink model file of que no.2 below  

                calendar

                15 Apr 2022 09:14 AM IST

                  Read more

                  Week-6 Challenge: EV Drivetrain

                  Objective:

                  I attached below pdf file of all answers. and also a simulink model file of answer no. 3.

                  calendar

                  13 Apr 2022 06:32 AM IST

                    Read more

                    Week-3 Challenge: ADVISOR Tool

                    Objective:

                    I attached the pdf file of all the answers below.

                    calendar

                    11 Apr 2022 10:27 AM IST

                      Read more

                      Week-4 Challenge WOT Condition Part-2

                      Objective:

                      I attached the docx file of all answers below.

                      calendar

                      10 Apr 2022 07:18 PM IST

                        Read more

                        Project

                        Objective:

                        A detailed project report is attached below in the docx form also the model file .

                        calendar

                        06 Apr 2022 03:03 PM IST

                          Read more

                          Week - 4

                          Objective:

                          I attached the model file of que 1 and que 2 and also a docx file below.

                          calendar

                          27 Mar 2022 04:36 PM IST

                            Read more

                            Week -2

                            Objective:

                            I attached the file of answer 1 and answer 2 and also the simulink model file:  

                            calendar

                            19 Mar 2022 04:05 AM IST

                              Read more
                              Showing 1 of 23 projects