1. Which types of power converter circuits are employed in electric and hybrid electric vehicle? EV charger = Ac-dc (retificer) motor drive=Dc-Ac (inverter) Dc-Dc (chopper) two type step down step up Ac-Ac regulator Analog tolerance (stepoint) Digital ic,micro controller …
Ratheesh M
updated on 29 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 Ratheesh M (16)
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
#include //Library for I2C Communication functions#include //Library for LCD display functionLiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() {lcd.begin(16,2); //Initilize LCD displaylcd.setCursor(0,0); //Sets Cursor at first line of Displaylcd.print("skill"); //Prints…
21 Oct 2022 05:42 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) /* * project 2.c * * Created: 9/20/2022 10:13:56 AM * Author : Ratheesh */ #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#define rs_high PORTD |=(1<<0);//DEFINE…
20 Sep 2022 05:00 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
/* * AVRproject1.c * * Created: 9/16/2022 4:57:10 PM * Author : Ratheesh */ #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" // we are using external interrupt pin#include <util/delay.h> // delay function purpose#define…
16 Sep 2022 12:00 PM IST
Project 2 - V&V SW Analysis II
Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them.
05 Sep 2022 05:43 AM IST
Project 1 - V&V SW Analysis - I
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…
19 Aug 2022 06:12 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include<stdio.h>#include"states.h" static void(*stateTable[])(void)={GearDown,checkingbefortakeOFF,RaisingGear,gearup,checkbeforelanding,LoweringGear}; int main(){ initiate_static_Machince(); while(1) { stateTable[current_state](); } } void Gear_Down(void) { current_state=Gear_Down;; printf("Enther the status of…
08 Aug 2022 01:59 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
#include <stdbool.h>#include <stdio.h>#include <stdlib.h> // Link list nodestruct Node{int data;struct Node* next;}; /* A utility function to insert anode at the beginning ofa linked list*/void push(struct Node** head_ref,int new_data); /* A utility function to check ifgiven data is present in a list…
25 Jul 2022 06:07 AM IST
Week-7 Challenge: DC Motor Control
H-Bridge Motor Driver Using Bipolar Transistors An H-bridge is an arrangement of transistors that allows a circuit full control over a standard electric DC motor. That is, an H-bridge allows a microcontroller, logic chip, or remote control to electronically command the motor to go forward, reverse, brake, and coast.…
14 Jul 2022 12:03 PM IST
Final Project: Design of an Electric Vehicle
Create a MATLAB model of electric car which uses a battery and a DC motor. Choose suitable blocks from Powertrain block set. Prepare a report about your model including following: velocity output battery soc:
21 Jun 2022 08:01 AM IST
Project-1: Powertrain for aircraft in runways
1.Search and list out the total weight of various types of aircrafts. MTOW = Maximum take-off weight, MLW = Maximum landing weight, TOR = Take-off run Type MTOW [kg] MLW [tonnes] TOR [m] LR [m] Antonov An-225 640,000 591.7 3500 Scaled Composites Model 351 Stratolaunch 589,670 3660 Airbus A380-800[1][2][3]…
12 Jun 2022 08:19 AM IST
Week-6 Challenge: EV Drivetrain
1. Which types of power converter circuits are employed in electric and hybrid electric vehicle? EV charger = Ac-dc (retificer) motor drive=Dc-Ac (inverter) Dc-Dc (chopper) two type step down step up Ac-Ac regulator Analog tolerance (stepoint) Digital ic,micro controller …
29 Apr 2022 06:38 AM IST
Week-4 Challenge WOT Condition Part-2
1. I a take reference application projects assembled from blocks and subsystems. hybrid vechicle system i go to the passser car blockset click then came on the electical panel and just click it varant system the came action choices then chanage the modle type 2) …
20 Mar 2022 07:59 AM IST
Week-3 Challenge: ADVISOR Tool
03 Mar 2022 07:51 AM IST
Week - 4
15 Jan 2022 10:32 AM IST
Week -2
First problem i give a input signal using pule generator using switch operation Dc source connected to solenoid coil interlink ideal translational monotion sensor solenoid coil spring mass value
17 Dec 2021 04:31 PM IST