Title: Electric Trike

Size: px
Start display at page:

Download "Title: Electric Trike"

Transcription

1 05/20/2015 TI Innovation Challenge Title: Electric Trike Submitted by: Abel Velazquez

2 Table of Contents Abstract.3 Introduction. 3 Technical Achievements Electronics and PCB Design 4 Mechanical Fabrication and Mounts 5 Calculations.5 Parts and Technical description Pedals Electronics..6 Main Battery Electronics..7 LCD with Touchscreen.8 Motor.9 Hardware and Software diagram...11 Bill of Materials...13 Division of Labor and Gantt Chart.14 Appendix A HUB Code..15 Appendix B Motor controller Code 54 2

3 Abstract In today s world, the continuously fluctuating gas prices and the lack of physical exercise reported by the average person, force a considerable number of people to rethink and reinvent their transportation options. As a result, many choose to bike to work or school, as a way to mitigate these problems. What if, however, you had a disability or a serious health condition that would prevent you from riding a bicycle? Or what if you simply don t want to be limited to just a plain bike? Life is complicated; some days you ll be in a hurry, and in those situations, practicality trumps healthy choices. But what if you could have it all? A vehicle that anyone can ride like a bicycle but that will assist you or even completely replace your pedaling if need be. That is what we proposed, tested, and built. An electric tricycle equipped with a motor that propels it, an LCD that displays relevant information, and a few sensors that will gather data corresponding to your caloric expenditure. I. Introduction Our design consists of an electric tricycle equipped with a brushless DC motor. The choice of a tricycle was not random. Since the seating position is different and it has three wheels, it s more comfortable and stable. As a result, it can be ridden by a wider number people. The DC motor can be driven using a throttle installed at one of the handle bars, a cruise control system, or both at the same time. Additionally, the three-wheeled vehicle has a number of sensors on board to provide the user with helpful information as well as control of the trike. Some of these sensors are used to calculate technical parameters, such as current drawn by the motor, and battery charge level. Others are be used for estimation of the effort made by the cyclist. All pertinent information is displayed on a touchscreen LCD. 3

4 Our project is targeting a wide market. It would be very useful for someone wanting to commute to school, work, grocery store, etc. In this sense, our electric trike can be used just like a regular bicycle, with the added bonuses of having to pedal less and being able to recline. From another perspective, however, the e-trike can be used as an exercise machine for people with limited mobility or other health conditions or disabilities, such as extreme obesity, missing limbs, etc. These are individuals who need exercise but require assistance from the machine. Pedaling is a low impact form of physical activity that engages the cardiovascular system, which makes it an excellent fitness option. Our e-trike gives you all the health benefits of a traditional bicycle without the limitations. II. Technical achievements Electronics and PCB Design - We designed, prototyped, and implemented our own motor controller board. The design reads the data coming from three Hall Effect sensors placed inside the motor, one for each phase. It then uses this information to determine the position of the rotor with respect to the stator and energize the corresponding phase using Pulse width Modulation (PWM). The system has two additional inputs: the Throttle and the Cruise Control. The generated PWM is a combination of these two parameters. The system also has an overcurrent protection feature that will turn all phases off if the current surpasses a certain level as well as a kill switch for emergency breaking. - We designed, prototyped, and implemented what we call the HUB, which is a central unit that controls the touchscreen LCD and the communication with the pedals. It also monitors the battery voltage level and the current in the motor at all times. It is here were we 4

5 implemented the cruise control. It reads the speed at which the bike is going and tries to match it the speed that the user sets at the LCD by either increasing or decreasing the PWM. - We designed, prototyped, and implemented a separate pedal board (one for each pedal) that reads the output of four pressure sensors as well as an accelerometer. These values are then sent to the HUB via an NRF24L01+ transceiver to provide the user with the angle of the pedals and the force applied on them. Additionally, each pedal board is equipped with a battery charging circuit that is hooked up to a solar panel, to recharge the 3.7V battery that powers this circuit. Mechanical fabrication and mounts - We made 3D printed models for our LCD mount, HUB mount, and pedal mounts. All models were designed in Solid Works and are currently mounted on the trike. - We laser cut a piece of transparent acrylic material to serve as the cover top for the HUB. It is designed to protect the central board from water, dirt, etc., as well as to protect the user from accidentally touching the 36V or 12V lines. We made the top transparent so that all debugging and status LED s we included can be seen at all times. - We mounted the DC motor on the trike, attaching a metal rod to the frame to prevent the motor from kicking when accelerating from a full stop. - We replaced the original pedals by the 3D models we made with all of our pedal circuitry. Calculations - We are calculating torque applied to the pedals, to then find out the power generated by the rider in Watts. This in turn is converted to calories, to be displayed in the main screen in the LCD. The original 5

6 III. idea was to use the angle of the pedal to figure out the tangential force being applied. This however couldn t be fully implemented due to time constrictions. This implies that our calorie calculation is not 100% accurate, but it provides for a decent estimate. In addition, we were planning to incorporate the weight of the person into the calculation to make it more precise, but unfortunately this wasn t finished on time either. - We are calculating the speed in miles per hour (mph) and in revolutions per minute (rpm), as well as trip distance in miles. To achieve this, we placed four equidistant magnets on the back wheel, and attached a Hall Effect sensor to the frame of the trike. We wrote our software such that we can measure the time it takes between each quarter of a revolution. We also know the circumference of our wheel, which can easily be obtained by 2*π*r. That gives us all the information we need to calculate mph, rpm, and total distance travelled. - Parts and Technical description. TI Parts MSP430F5510, MSP430F2274, LP2992, TPS79133, LM1117, LM2940,CSD19506 Pedals Electronics Power The system uses use a battery and a small solar panel, combined with a battery charging/power-path circuit designed by us. Battery [LIPO, 3.7V 1000mA] Solar Panel [ 5.5V 120mA 0.66W] Charger and regulators [MCP73831][ LP2992IM5][ TPS79133] Measuring the Angle 6

7 As mentioned above, our design has digital accelerometers on each pedal to obtain the readings. The data is fed to the microcontroller via I2C. The accelerometer provides x, y, z coordinates. We are using those values with a lookup table to find out the corresponding angle. We are only using the upper 12 bits. MMA8451 [±2g to ±8g, 14 bit ADC, I2C] Measuring the Force We used 4 resistive sensors on each pedal, taking an average of their readings at the pedal microcontroller. We are using 10 bit resolution in our ADC reading. Up to 400 N of force on each pedal Microcontroller As mentioned above, the purpose of this microcontroller is to collect, process, and transmit data to the HUB. There is one on each pedal. MSP430F2274 Parameters relevant to our application o Clock Speed: 16MHz o Program Memory: 32KB o SRAM: 4KB + 2KB o 4 16-Bit Timers with Capture/Compare Registers o Low Supply-Voltage Range: 3.6 V Down to 1.8 V o 2 10-Bit Analog-to-Digital Converters (ADC) channels With Window Comparator o 2 Universal Serial Communication Interfaces (USCIs) Data Transmission 7

8 To send the information collected we used a Nordic chip due to their low power qualities and long distance range. Interfacing with the microcontroller is done through SPI. Wireless Transceiver [NRF24L01+, 2.4GHz] Main Battery Electronics Battery ratings LiFePO4 Battery Pack Voltage [36V] Capacity [15Ah] Weight [12 lbs] Battery meter For the voltage sensing we have a voltage divider that brings it down from 40V (fully charged) to 3.3V. This is the input of one of the ADC s. Then as the voltage in the battery drops, so will the reading the ADC. Power Shunt resistor Voltage regulators Our original intent was to use an adjustable Switching voltage regulator [42V 2A] to use only one battery to power all. However, after unsuccessfully testing a variety of chips that were rated for and supposed to handle the amount of power that our system requires, we decided to a use a smaller 12V battery to power the 12V line in the H- bridge, with linear regulators to convert it down to 5V and 3.3V for the LCD and electronics, respectively. LCD with Touchscreen. Communication Protocol 8

9 We are using SPI to control and communicate with the LCD due to the fewer number of wires that need to be carried from the HUB. SPI (5 pins) 8bit mode (12 pins) Size, Resolution, and Features 3.5in (diagonal) 480x320 pixels with individual RGB pixel control 6 white-led backlight Input Touchscreen [Resistive] 4-wire interface. Works independently of the LCD. We are using two of the microcontroller s ADC channels to sample the x and y coordinates and detect when we have had a touch. Power Ratings Voltage [3.3V] or Voltage [5V] since the LCD circuitry includes a buck converter. Current [200mA]. Brain Microcontroller (HUB) MSP430F5510 Parameters relevant to our application o Clock Speed: 16MHz o Program Memory: 32KB o SRAM: 4KB + 2KB o 4 16-Bit Timers with Capture/Compare Registers o Low Supply-Voltage Range: 3.6 V Down to 1.8 V 9

10 o 2 10-Bit Analog-to-Digital Converters (ADC) channels With Window Comparator o 2 Universal Serial Communication Interfaces (USCIs) Motor Motor control circuit The trike only accelerates by using the handlebar Throttle [0-3.3V], as any typical motorcycle, or when the cruise control is activated. We are using 6 high power N-MOSFETs [200V 60A] Motor controller PCB (designed by us) Type Brushless [3-phase DC] Ratings Voltage [36V] Current [2A no load, 10A max] Power [350W] Current sensing We measured the voltage across a power shunt resistor with the ADC in the microcontroller. Once you know voltage and resistance, you can calculate the current in the motor. Power shunt resistor[0.5ω, 50W] Velocity Hall Effect sensor [US5881] Magnets[Neodymium 1/2 x 1/8 inch Disc N48] 10

11 IV. Hardware and Software diagrams. Figure 1. Hardware diagram Figure 2. General mounting layout. 11

12 Figure3. HUB and Motor controller software diagram. 12

13 V. Bill of Materials. Device Quantity Unit Price TOTAL MSP430 4 $ 2.55 $ NRF24L+ 3 $ 1.23 $ 3.69 LDO 3 $ 0.87 $ 2.61 MOSFET 6 $ 5.04 $ LED 15 $ 0.20 $ 3.00 NPN transistor 15 $ 0.31 $ 4.65 PNP tansistor 6 $ 0.31 $ 1.86 Diode 6 $ 0.84 $ 5.04 AD $ 2.09 $ mm Connectors 11 $ 0.58 $ 6.38 Power Connectors 5 $ 0.50 $ 2.50 LCD 1 $ $ Load Cell 8 $ 9.99 $ Solar Panel 2 $ 3.02 $ 6.04 Screw/pkg 5 $ 1.59 $ 7.95 Poly Capacitors 12 $ 1.15 $ SMD Capacitors 30 $ 0.41 $ SMD Resistors 35 $ 0.28 $ 9.80 PCB's 1 $ $ Accelerometer 2 $ 2.05 $ 4.10 LIPO Battery 2 $ 8.99 $ V Battery 1 $ $ Hall Effect 1 $ 2.03 $ 2.03 Magnets 8 $ 5.80 $ Motor 1 $ $ Trike 1 $ 1, $ 1, Throttle 1 $ $ D mounts 4 $ 5.00 $ $ 2, Table 1. Bill of Materials 13

14 VI. Division of labor and Gantt Chart. Task Name Duration Completed Due by Dow n time Done by Week # Introduction (team) Research/project proposal (team) Reasearch parts (Team) Order parts (Team) Make Breakout boards /######/ &&&&&&& (Alejandro) /######/ /######/ / Prototyping pedal sensors (Abel) Testing motor /######/ &&&&&&& (Alejandro) Prototyping Battery charging (Abel) Prototyping LCD (team) Prototyping motor controller (Abel) Prototyping RF transceiver (team) Make motor PCB (Alejandro) &&&&&&& /######/ /######/ /######/ Make pedal PCB (Abel) PCB assembly (team) Debug PCB's (team) Make enclosures and mounts (Abel) Mount modules on the trike &&&&&&& (Alejandro) /######/ /######/ /######/ Test trike (team) Demo (team) /######/ Figure 4. Task Chart. Figure 4 shows the division of labor and the tasks to be completed. The intention is to try to collaborate as much as possible to improve productivity. Figure 5 plots this data over the course of the semester. 14

International Journal of of Electrical and and Electronics Engineering Engineering Research and Development (IJEEERD),

International Journal of of Electrical and and Electronics Engineering Engineering Research and Development (IJEEERD), IJEEERD International Journal of of Electrical and and Electronics Engineering Engineering Research and Development (IJEEERD), ISSN Research 2248 and 9282(Print), Development ISSN (IJEEERD), 2248 9290(Online),Volume

More information

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 25 January 2011 Project Name: Digital Dashboard Team Name: Uncensored Sensors Team Members: Name: Matthew Greenberg Email:

More information

Final Report 4/25/12. Project: Intelli-Shade. Team: Test Curtains Please Ignore

Final Report 4/25/12. Project: Intelli-Shade. Team: Test Curtains Please Ignore EEL 4924 Electrical Engineering Design (Senior Design) Final Report 4/25/12 Project: Team: Test Curtains Please Ignore Team Members: Michael Feliciano Mark Heh Abstract: Our project is the design of an

More information

Solar RC Boat 49. Team 5: Nisa Chuchawat, Robert Whalen, Zhendong Yang ECE 445 Project Proposal - Fall 2017 TA: Yamuna Phal

Solar RC Boat 49. Team 5: Nisa Chuchawat, Robert Whalen, Zhendong Yang ECE 445 Project Proposal - Fall 2017 TA: Yamuna Phal Solar RC Boat 49 Team 5: Nisa Chuchawat, Robert Whalen, Zhendong Yang ECE 445 Project Proposal - Fall 2017 TA: Yamuna Phal 1 Introduction 1.1 Objective Typical RC boats have terrible battery life and long

More information

Energy Harvesting Platform

Energy Harvesting Platform Energy Harvesting Platform Group 8 S A N JAY K H E ML A NI T R AV I S B A D A L L K I A R A R O D R I G U EZ M I C H A EL L I N EE EE EE EE Motivation Non-renewable energy sources harm the environment

More information

ELECTRIC BICYCLE A Green Alternative to Urban Commuting

ELECTRIC BICYCLE A Green Alternative to Urban Commuting ELECTRIC BICYCLE A Green Alternative to Urban Commuting An electric bicycle, also known as an e-bike or booster bike, is a bicycle with an integrated electric motor which can be used for propulsion. E-bikes

More information

EV-EMCU Electric Vehicle - Economy Mode Control Unit

EV-EMCU Electric Vehicle - Economy Mode Control Unit EV-EMCU Electric Vehicle - Economy Mode Control Unit Vanessa Baltacioglu Shauntice Diaz Chris Chadman Group 4 General Project Description A Overall control module Project to implement Description economy

More information

UniverSOL Charge Station

UniverSOL Charge Station UniverSOL Charge Station Group 17 Jonathan German Amy Parkinson John Curristan Brock Stoops Sponsored by Motivations Environmental Renewable Energy Carbon Emissions Power Demand Power Dependency Availability

More information

Week 11. Module 5: EE100 Course Project Making your first robot

Week 11. Module 5: EE100 Course Project Making your first robot Week 11 Module 5: EE100 Course Project Making your first robot Dr. Ing. Ahmad Kamal Nasir Office Hours: Room 9-245A Tuesday (1000-1100) Wednesday (1500-1600) Course Project: Wall-Follower Robot Week 1

More information

Solar Power Energy Harvesting Electrical Integration

Solar Power Energy Harvesting Electrical Integration WHITEPAPER Solar Power Energy Harvesting Electrical Integration Contents Introduction... 1 Solar Cell Electrical Characteristics... 2 Energy Harvesting System Topologies... 4 Design Guide... 6 Indoor Single

More information

Technical Article. How to implement a low-cost, accurate state-of-charge gauge for an electric scooter. Manfred Brandl

Technical Article. How to implement a low-cost, accurate state-of-charge gauge for an electric scooter. Manfred Brandl Technical How to implement a low-cost, accurate state-of-charge gauge for an electric scooter Manfred Brandl How to implement a low-cost, accurate state-of-charge gauge for an electric scooter Manfred

More information

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking ECE 4600 GROUP DESIGN PROJECT PROGRESS REPORT GROUP 03 Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking Authors Radeon Shamilov Kresta Zumel Valeria Pevtsov Reza Fazel-Darbandi

More information

Two Wheeled Self balancing Robot

Two Wheeled Self balancing Robot EE 318, Electronic Design Lab Project Report, EE Dept, IIT Bombay, April 2010 Two Wheeled Self balancing Robot Group No 8 Murtuza Patanwala (07d07026) Supervisor : Prof. P. C Pandey 1) Introduction The

More information

ECO BIKE TEST PLAN DOCUMENT

ECO BIKE TEST PLAN DOCUMENT Introduction: ECO BIKE TEST PLAN DOCUMENT Traffic jams have always been one of the major global issues, which can have negative impacts on the environment and the human. Nowadays, commuters have had a

More information

Mellivora: A Battery Experiment

Mellivora: A Battery Experiment Mellivora: A Battery Experiment Overview Team Introduction Problem Our Approach Technological Innovations Design Alternatives Design Specifications Block Diagram Individual Subsystems MDR Deliverables

More information

Design and Experimental Study on Digital Speed Control System of a Diesel Generator

Design and Experimental Study on Digital Speed Control System of a Diesel Generator Research Journal of Applied Sciences, Engineering and Technology 6(14): 2584-2588, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: December 28, 2012 Accepted: February

More information

Kart Team. Project Plan: Group 13-22

Kart Team. Project Plan: Group 13-22 Project Plan: Group 13-22 Kart Team Team Members: Adam Woody (Team Leader) Nick Marquardt (Webmaster) Kevin Flynn (Communications) Andy Goiffon Chris Larson May 13-22 Kart Team Project Plan Executive Summary

More information

Battery Bank for Wind Turbine. Project Proposal Prash Ramani, Marcos Rived TA: Katherine O Kane

Battery Bank for Wind Turbine. Project Proposal Prash Ramani, Marcos Rived TA: Katherine O Kane Battery Bank for Wind Turbine Project Proposal Prash Ramani, Marcos Rived TA: Katherine O Kane Table of Contents: 1.0 Introduction.2 1.1 Statement of Purpose 1.1.0 Scope 1.1.1 Purpose 1.2 Objectives 1.2.1

More information

Wireless Test Instrumentation for Rotating Parts

Wireless Test Instrumentation for Rotating Parts Wireless Test Instrumentation for Rotating Parts ECE 193 Advisor: Rajeev Bansal Olivia Bonner David Vold Brendon Rusch Michael Grogan ME 32 Advisor: Robert Gao Kyle Lindell Andrew Potrepka Problem Statement

More information

Sponsored By: The Boeing Company Evenflo Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk

Sponsored By: The Boeing Company Evenflo Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk Group 1 Matt Bivona EE Michael Covitt CpE Jason Nagin CpE Donnell Robinson EE Sponsored By: The Boeing Company Evenflo Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk Name / Company The Boeing

More information

SM361 RIG SWITCH CONSTRUCTION MANUAL

SM361 RIG SWITCH CONSTRUCTION MANUAL SM361 RIG SWITCH CONSTRUCTION MANUAL Document ver 1, For software release ver 1.1 May 27, 2016 Controls the power of 12V equipment while a vehicle is in use Product Development by: SM361 RIG SWITCH OVERVIEW

More information

EEL Project Design Report: Automated Rev Matcher. January 28 th, 2008

EEL Project Design Report: Automated Rev Matcher. January 28 th, 2008 Brad Atherton, masscles@ufl.edu, 352.262.7006 Monique Mennis, moniki@ufl.edu, 305.215.2330 EEL 4914 Project Design Report: Automated Rev Matcher January 28 th, 2008 Project Abstract Our device will minimize

More information

Hybrid Electric Bicycle IPRO 315

Hybrid Electric Bicycle IPRO 315 Hybrid Electric Bicycle IPRO 315 Objectives and Goals Research both Hybrid and Electric Bicycles Publish all research and fi ndings Build at least one Prototype Establish a test bench for comparison Explore

More information

Group #26 Andrea Solano-EE Juan Valera-EE Manuel Keesee-EE Randall Lay-EE

Group #26 Andrea Solano-EE Juan Valera-EE Manuel Keesee-EE Randall Lay-EE Group #26 Andrea Solano-EE Juan Valera-EE Manuel Keesee-EE Randall Lay-EE Table of Contents 1. Project Overview 2. Revision A/B 3. Final Revision 4. Time Line of Project 5. Group Responsibilities 6. Financials

More information

Hardware Design of Brushless DC Motor System Based on DSP28335

Hardware Design of Brushless DC Motor System Based on DSP28335 Hardware Design of Brushless DC Motor System Based on DSP28335 Abstract Huibin Fu a, Wenbei Liu b and Xiangmei Du c School of Shandong University of Science and Technology, Shandong 266000, China. a imasmallfish@163.com,

More information

Slippage Detection and Traction Control System

Slippage Detection and Traction Control System Slippage Detection and Traction Control System May 10, 2004 Sponsors Dr. Edwin Odom U of I Mechanical Engineering Department Advisors Dr. Jim Frenzel Dr. Richard Wall Team Members Nick Carter Kellee Korpi

More information

High Level Design ElecTrek

High Level Design ElecTrek High Level Design ElecTrek EE Senior Design November 9, 2010 Katie Heinzen Kathryn Lentini Neal Venditto Nicole Wehner Table of Contents 1 Introduction...3 2 Problem Statement and Proposed Solution...3

More information

IV-3 VFD Shield for Arduino. Assembly Manual

IV-3 VFD Shield for Arduino. Assembly Manual June 2014 Table of Contents 1 Overview Features Applications 3 3 3 2 Assembly Hints 4 3 PCB Overview 5 4 Circuit Diagram 6 5 Assembly Diodes and IC socket Electrolytic capacitors Ceramic capacitors 10K

More information

DeVi-Comfort B.V. Netherlands

DeVi-Comfort B.V. Netherlands Vector Controller (FOC) for BLDC Motors Field-Oriented Control (FOC) is an important technology for motor systems, particularly those using permanent magnets (PM). In general, FOC provides an efficient

More information

ODK U500 (V2) Electric Bicycle

ODK U500 (V2) Electric Bicycle ODK U500 (V2) Electric Bicycle Ownerʼs Manual (English) Juiced Riders Inc. R130101 8724 Approach Road, San Diego, CA 92154, U.S.A. mail@juicedriders.com Tel: +1 (619) 746-8877 www.juicedriders.com How

More information

The CMPE 118 Cockroach Robot Dept. of Computer Engineering, UCSC

The CMPE 118 Cockroach Robot Dept. of Computer Engineering, UCSC The CMPE 118 Cockroach Robot Dept. of Computer Engineering, UCSC Background: The CMPE-118 Cockroach robot is designed to be an accessible mobile platform to teach you basic state machine programming. This

More information

Cordless Drill Motor Control with Battery Charging Using Z8 Encore! F0830 Reference Design

Cordless Drill Motor Control with Battery Charging Using Z8 Encore! F0830 Reference Design Application Note Cordless Drill Motor Control with Battery Charging Using Z8 Encore! F0830 Reference Design AN025504-0910 Abstract Currently, most hand-held electric drilling machines operating on batteries

More information

THE SOLAR POWERED ANTI-THEFT BAG

THE SOLAR POWERED ANTI-THEFT BAG THE SOLAR POWERED ANTI-THEFT BAG Ruchi Mangesh Jadhav 1, Sarika Hari Gaonkar 2, Darshan Kamlesh Khatri 3 Soumya Satish Bangera 4 a ruchimjadhav@gmail.com, b sarikagaonkar01@gmail.com, c darshankk.dk@gmail.com,

More information

A Team-based ECET Capstone Project: Design and Implementation of a Solar Insolation Measurement System

A Team-based ECET Capstone Project: Design and Implementation of a Solar Insolation Measurement System A Team-based ECET Capstone Project: Design and Implementation of a Solar Insolation Measurement System Abstract This paper describes an example of the successful design and implementation of a Portable

More information

World Scientific Research Journal (WSRJ) ISSN: Multifunctional Controllable and Detachable Bicycle Power Generation /

World Scientific Research Journal (WSRJ) ISSN: Multifunctional Controllable and Detachable Bicycle Power Generation / World Scientific Research Journal (WSRJ) ISSN: 2472-3703 www.wsr-j.org Multifunctional Controllable and Detachable Bicycle Power Generation / Charging Device Yunxia Ye School of North China Electric Power

More information

Second Generation Bicycle Recharging Station

Second Generation Bicycle Recharging Station Second Generation Bicycle Recharging Station By Jasem Alhabashy, Riyadh Alzahrani, Brandon Gabrelcik, Ryan Murphy and Ruben Villezcas Team 13 Final Report For ME486c Document Submitted towards partial

More information

THREE PHASE FAULT ANALYSIS WITH AUTO RESET ON TEMPORARY FAULT AND PERMANENT TRIP OTHERWISE

THREE PHASE FAULT ANALYSIS WITH AUTO RESET ON TEMPORARY FAULT AND PERMANENT TRIP OTHERWISE THREE PHASE FAULT ANALYSIS WITH AUTO RESET ON TEMPORARY FAULT AND PERMANENT TRIP OTHERWISE ABSTRACT The project is designed to develop an automatic tripping mechanism for the three phase supply system.

More information

Internal Luggage Scale

Internal Luggage Scale 1 Introduction Internal Luggage Scale Team 40 - Ryan Owan, Shivani Mouleeswaran, and Jonathan Li ECE 445 Project Proposal - Fall 2018 TA: Channing Philbrick 1.1 Objective Most major airlines charge additional

More information

Design and Implementation of a Smart Terrace Energy System

Design and Implementation of a Smart Terrace Energy System Design and Implementation of a Smart Terrace Energy System 1.INTRODUCTION Project by Manaswi deshmukh, Chetan thaware, Harsh shah Savitribai Phule University Demand for more energy makes us seek new energy

More information

PACE 500 OWNER S MANUAL

PACE 500 OWNER S MANUAL PACE 500 OWNER S MANUAL AVENTON PACE 500 OWNER S MANUAL Thank you for purchasing an Aventon Pace 500 E-Bike! Before riding, please take a moment to review these instructions. Need service or support? Visit

More information

Mercury VTOL suas Testing and Measurement Plan

Mercury VTOL suas Testing and Measurement Plan Mercury VTOL suas Testing and Measurement Plan Introduction Mercury is a small VTOL (Vertical Take-Off and Landing) aircraft that is building off of a quadrotor design. The end goal of the project is for

More information

Adaptive Cruise Control System Overview

Adaptive Cruise Control System Overview 5th Meeting of the U.S. Software System Safety Working Group April 12th-14th 2005 @ Anaheim, California USA 1 Introduction Adaptive Cruise System Overview Adaptive Cruise () is an automotive feature that

More information

EXPERIMENTAL VERIFICATION OF INDUCED VOLTAGE SELF- EXCITATION OF A SWITCHED RELUCTANCE GENERATOR

EXPERIMENTAL VERIFICATION OF INDUCED VOLTAGE SELF- EXCITATION OF A SWITCHED RELUCTANCE GENERATOR EXPERIMENTAL VERIFICATION OF INDUCED VOLTAGE SELF- EXCITATION OF A SWITCHED RELUCTANCE GENERATOR Velimir Nedic Thomas A. Lipo Wisconsin Power Electronic Research Center University of Wisconsin Madison

More information

Project. Final Report. Prepared for: Dr. Marco Tacca and Dr. Leo Estevez. Prepared by: Heather Thomas. Team Ψ

Project. Final Report. Prepared for: Dr. Marco Tacca and Dr. Leo Estevez. Prepared by: Heather Thomas. Team Ψ Project Final Report Prepared for: Dr. Marco Tacca and Dr. Leo Estevez Prepared by: Heather Thomas Team Ψ T E A M Ψ : E - B I K E F i n a l R e p o r t P a g e 1 TABLE OF CONTENTS ABSTRACT.. (2) BACKGROUND/INTRODUCTION.

More information

VEX Classroom Lab Kit to PLTW VEX POE Conversion Kit

VEX Classroom Lab Kit to PLTW VEX POE Conversion Kit Published: 03/22/20 Picture Part Description Number 275-88 Rack Gearbox Bracket (2-pack): Combines with the VEX linear slides & Rack Gears to create a linear actuator. Quantity 276-096 Linear Slide (2-pack):

More information

Sensing the position of throttle valve using Throttle Position Sensor

Sensing the position of throttle valve using Throttle Position Sensor Sensing the position of throttle valve using Throttle Position Sensor Nikita Dhenge 1, Krupa Deth 2, S T Valujkar 3 1&2 (National Institute of Electronics and Information Technology, Aurangabad, India)

More information

Hub Kit Fitting Guide 36V/HL

Hub Kit Fitting Guide 36V/HL Hub Kit Fitting Guide 36V/HL Important: For your own safety you must read this manual before attempting to fit any part of the motor kit to your bike. You must also ensure that you fit the kit in strict

More information

Mobile Robot Design Notes

Mobile Robot Design Notes Mobile Robot Design Notes The mobile robot is a simple design with two-wheel differential steering and a rear castor. It is designed for teaching use in MTRX3700 Mechatronics 3 and other units of study.

More information

Chapter 5. Design of Control Mechanism of Variable Suspension System. 5.1: Introduction: Objective of the Mechanism:

Chapter 5. Design of Control Mechanism of Variable Suspension System. 5.1: Introduction: Objective of the Mechanism: 123 Chapter 5 Design of Control Mechanism of Variable Suspension System 5.1: Introduction: Objective of the Mechanism: In this section, Design, control and working of the control mechanism for varying

More information

LCD S900 User Manual. The Latest Version 2014

LCD S900 User Manual. The Latest Version 2014 LCD S900 User Manual The Latest Version 2014 1. Exterior Parameters Casing Material: ABS Display Material: High Hardness Acrylic (the same hardness value as tempered glass). Front View Side View Side View

More information

Mechatronical Seed Sowing Machine

Mechatronical Seed Sowing Machine GRD Journals- Global Research and Development Journal for Volume 2 Issue 5 April 2017 ISSN: 2455-5703 Mechatronical Seed Sowing Machine Mr. Akshay Divate Miss. Drakshayini Muchandi Department of Electronics

More information

ECE 480 Design Team 3: Designing Low Voltage, Low Current Battery Chargers

ECE 480 Design Team 3: Designing Low Voltage, Low Current Battery Chargers Michigan State University Electrical Engineering Department ECE 480 Design Team 3: Designing Low Voltage, Low Current Battery Chargers Application Note Created by: James McCormick 11/8/2015 Abstract: The

More information

ELG4126: Case Study 2 Hybrid System Design and Installation

ELG4126: Case Study 2 Hybrid System Design and Installation ELG4126: Case Study 2 Hybrid System Design and Installation Diesel Driven Generator Life Cycle Costing Photovoltaic Cells, Modules, and Arrays Possibility of Integrating Fuel Cells and Wind Turbines Environmental

More information

SWX02 48V (REAR) Hub Kit Fitting Guide

SWX02 48V (REAR) Hub Kit Fitting Guide SWX02 48V (REAR) Hub Kit Fitting Guide Important: For your own safety you must read this manual before attempting to fit any part of the motor kit to your bike. You must also ensure that you fit the kit

More information

(Let s first discuss in detail about Electric circuit of a kart and then evaluate the possible conditions for fire accidents.)

(Let s first discuss in detail about Electric circuit of a kart and then evaluate the possible conditions for fire accidents.) Automatic Fire Extinguisher Revan Kumar D 1 Karthik P 2 B.E 4 th year Mechanical Engineering,R.M.K Engineering College I. INTRODUCTION The rapid depletion of existing fossil fuel sources and the environmental

More information

MANTECH ELECTRONICS. Stepper Motors. Basics on Stepper Motors I. STEPPER MOTOR SYSTEMS OVERVIEW 2. STEPPING MOTORS

MANTECH ELECTRONICS. Stepper Motors. Basics on Stepper Motors I. STEPPER MOTOR SYSTEMS OVERVIEW 2. STEPPING MOTORS MANTECH ELECTRONICS Stepper Motors Basics on Stepper Motors I. STEPPER MOTOR SYSTEMS OVERVIEW 2. STEPPING MOTORS TYPES OF STEPPING MOTORS 1. VARIABLE RELUCTANCE 2. PERMANENT MAGNET 3. HYBRID MOTOR WINDINGS

More information

Accurate and available today: a ready-made implementation of a battery management system for the new 48V automotive power bus

Accurate and available today: a ready-made implementation of a battery management system for the new 48V automotive power bus Accurate and available today: a ready-made implementation of a battery management system for the new 48V automotive power bus Gernot Hehn Today s personal vehicles have an electrical system operating from

More information

A. Control Panel/Dash board buttons

A. Control Panel/Dash board buttons CONTENT I. Specifications II. Important Information III. Bike Overview IV. Safety guidelines V. Charging A. Indoor Charging B. Outdoor Charging VI. How to start the e-bike A. Key start B. Remote Start

More information

Overview. Battery Monitoring

Overview. Battery Monitoring Wireless Battery Management Systems Highlight Industry s Drive for Higher Reliability By Greg Zimmer Sr. Product Marketing Engineer, Signal Conditioning Products Linear Technology Corporation Overview

More information

A New Buck-Boost Converter for a Hybrid-Electric Drive Stand P. Mašek

A New Buck-Boost Converter for a Hybrid-Electric Drive Stand P. Mašek A New Buck-Boost Converter for a Hybrid-Electric Drive Stand P. Mašek This paper describes work on the laboratory working stand for a hybrid-electric drive located in laboratory T2:H1-26.The basic idea

More information

Automatic Positioning of Two Wheeler s Side Stand

Automatic Positioning of Two Wheeler s Side Stand Automatic Positioning of Two Wheeler s Side Stand Suraj M Dhonde 1, Aniket T Patil 2, Atul R Shelar 3, Prof. Sarthak K Joshi 4. suraj090694@gmail.com 1, aniketp033@gmail.com 2, atulshelar1818as@gmail.com

More information

Implementation of telecontrol of solar home system based on Arduino via smartphone

Implementation of telecontrol of solar home system based on Arduino via smartphone IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Implementation of telecontrol of solar home system based on Arduino via smartphone To cite this article: B Herdiana and I F Sanjaya

More information

ELM327 OBD to RS232 Interpreter

ELM327 OBD to RS232 Interpreter OBD to RS232 Interpreter Description Almost all new automobiles produced today are required, by law, to provide an interface from which test equipment can obtain diagnostic information. The data transfer

More information

C600-LCD Instructions

C600-LCD Instructions C600-LCD Instructions Content About the User Manual... 2 Outlook and Size... 2 Material and Color... 2 Button Definition... 3 Function Summary... 4 Function Summary... 4 Full View Area... 5 Normal View

More information

Electric Vehicle (EV) Eco System Specialists

Electric Vehicle (EV) Eco System Specialists Electric Vehicle (EV) Eco System Specialists Electric Vehicles represent the intersection of Mobility (Transport), ICT and Energy, the winners in this space will need to have masterful business models

More information

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot ECE 3992 Senior Project Proposal MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot 6 May 2005 Prepared By: Kevin E. Waters Department of Electrical and Computer Engineering University

More information

Solar Powered Golf Cart

Solar Powered Golf Cart Solar Powered Golf Cart Jake Betis, Jacob Krueger, Matt Roland, and Matthew Tourtelot College of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, 32816-2450

More information

Task summary from previous week/proposed Changes:

Task summary from previous week/proposed Changes: Project Status Letter PSL Number: PSL_04 Covering period: 02/25-03/03 Prepared by: J. Mahati Hari and Rachel Szteinberg Task summary from previous week/proposed Changes: TEAM CURRENT WBS TASKS COMPLETED

More information

Firefighter Life Monitor

Firefighter Life Monitor Firefighter Life Monitor Team 27 - Mary Bucki, Nick Lau, Seth Groharing ECE 445 Project Proposal - Spring 2017 TA: Kexin Hui Introduction: Objective: According to the National Fire Protection Association

More information

Hub Kit Fitting Guide 2016

Hub Kit Fitting Guide 2016 Hub Kit Fitting Guide 2016 Important: For your own safety you must read this manual before attempting to fit any part of the motor kit to your bike. You must also ensure that you fit the kit in strict

More information

Sponsored By: The Boeing Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk

Sponsored By: The Boeing Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk Group 1 Matt Bivona EE Michael Covitt CpE Jason Nagin CpE Donnell Robinson EE Sponsored By: The Boeing Company Mark Calabrese Matt Civitello Amy Hesse Kimberly Renk Name / Company The Boeing Company Mark

More information

PNEUMATIC BASED ASSEMBLY LINE

PNEUMATIC BASED ASSEMBLY LINE PNEUMATIC BASED ASSEMBLY LINE Kayomarz Ichhaporia 1, Sajjad Shaikh 2,Vishnu Nair 3,Mrs. S.V.Kulkarni 4 1KayomarzIchhaporia, Student, Dept. Of Instrumentation Engineering, All India Shri Shivaji Memorial

More information

The 2019 International. Future Energy Challenge (IFEC 19)

The 2019 International. Future Energy Challenge (IFEC 19) Technical Reference Material Updated 1 February 2019 Details in this document supersede other details provided in Call for Proposals and Request For Proposal, and previous updates of this document. Green

More information

Automated System for Air Pollution Detection and Control in Vehicles

Automated System for Air Pollution Detection and Control in Vehicles Automated System for Air Pollution Detection and Control in Vehicles 1 Diwakar Tiwari, 2 Shashank Shekhar, 3 Anurag Joshi, 4 Aman Deep 1 Department of Electronics and Communication Engineering, M.I.T,

More information

Automatic Braking and Control for New Generation Vehicles

Automatic Braking and Control for New Generation Vehicles Automatic Braking and Control for New Generation Vehicles Absal Nabi Assistant Professor,EEE Department Ilahia College of Engineering & Technology absalnabi@gmail.com +919447703238 Abstract- To develop

More information

ELM327 OBD to RS232 Interpreter

ELM327 OBD to RS232 Interpreter OBD to RS232 Interpreter Description Almost all new automobiles produced today are required, by law, to provide an interface from which test equipment can obtain diagnostic information. The data transfer

More information

AN-1166 Lithium Polymer Battery Charger using GreenPAK State Machine

AN-1166 Lithium Polymer Battery Charger using GreenPAK State Machine AN-1166 Lithium Polymer Battery Charger using GreenPAK State Machine This note describes the design of a complete charging circuit. A single cell Lithium Polymer (LiPol) battery is charged in two stages:

More information

Display. Specifications and Parameters of the Display. Appearance and Dimensions. Function Overview and Key Definitions. Materials and Dimensions

Display. Specifications and Parameters of the Display. Appearance and Dimensions. Function Overview and Key Definitions. Materials and Dimensions Display Specifications and Parameters of the Display 48V Power Supply; Rated Current: 10.4mA Maximum Operating Current: 30mA Power-off Leakage Current:

More information

Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx

Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx Connection Instructions 1) Mount Board to a panel (Wood or Metal) using supplied spacers and screws. 2) Solar Start up 18 volts,

More information

Designing Applications with Lithium-Ion Batteries

Designing Applications with Lithium-Ion Batteries Application Note Roland van Roy AN025 Sep 2014 Designing Applications with Lithium-Ion Batteries Contents 1. Introduction...1 2. Single Li-Ion Cell as Power Source...2 3. Battery Charging...6 4. Battery

More information

DEVELOPING AND BUILDING A PROTOTYPE REAR WHEEL DRIVE ELECTRIC CAR. PRJ.021 F17/0294/2004.

DEVELOPING AND BUILDING A PROTOTYPE REAR WHEEL DRIVE ELECTRIC CAR. PRJ.021 F17/0294/2004. DEVELOPING AND BUILDING A PROTOTYPE REAR WHEEL DRIVE ELECTRIC CAR. PRJ.021 PRESENTER: MURIITHI JOSEPH NYAGA F17/0294/2004. SUPERVISOR: EXAMINER: DR. J.M MBUTHIA MR. N.S WALKADE An electric car is an alternative

More information

Technical regulations for The Sun Trip Adventure June 29, 2014

Technical regulations for The Sun Trip Adventure June 29, 2014 Technical regulations for The Sun Trip Adventure June 29, 2014 www.thesuntrip.com / Edition #2 / MILAN - ASTANA / 2015 CONTENTS Preamble Page 2 1. Overview Page 3 2. Types of Bikes Page 3 2.1 Dimensions

More information

The 2019 International. Future Energy Challenge (IFEC 19)

The 2019 International. Future Energy Challenge (IFEC 19) Technical Reference Material Updated 28 September 2018 Details in this document supersede other details provided in Call for Proposals and Request For Proposal, and previous updates of this document. The

More information

ADVANCED MOTORIZATION TECHNOLOGY AUTOMATE. rolleaseacmeda.com

ADVANCED MOTORIZATION TECHNOLOGY AUTOMATE. rolleaseacmeda.com ADVANCED MOTORIZATION TECHNOLOGY AUTOMATE rolleaseacmeda.com INNOVATION & DESIGN TO MAXIMIZE COMFORT Rollease Acmeda is committed to innovation and development that benefit consumers in meaningful ways.

More information

ELECTRIC BICYCLE OWNER S MANUAL

ELECTRIC BICYCLE OWNER S MANUAL ELECTRIC BICYCLE OWNER S MANUAL For Owners of EG Kyoto 350 Electric Bicycle Table of Contents Descriptions: Page Installation Instructions 2 How to install the bicycle out of the box 2 Operation Instructions

More information

Department of Electrical and Computer Science

Department of Electrical and Computer Science Department of Electrical and Computer Science Howard University Washington, DC 20059 EECE 401 & 402 Senior Design Final Report By Team AutoMoe Tavares Kidd @ 02744064 Lateef Adetona @02732398 Jordan Lafontant

More information

DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER

DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER Australasian Universities Power Engineering Conference (AUPEC 2004) 26-29 September 2004, Brisbane, Australia DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER M.F.M. Elias*, A.K. Arof**, K.M. Nor* *Department

More information

Solar Powered Golf Cart

Solar Powered Golf Cart Solar Powered Golf Cart Group 9 Jake Bettis Jacob Krueger Matt Roland Matt Tourtelot Project Description The main objective of this project is to design and build a solar-powered, energy efficient electric

More information

Nuances in Ultra-Low Power Designs for Wearable Products. Steven Schnier and Chris Glaser March 2016

Nuances in Ultra-Low Power Designs for Wearable Products. Steven Schnier and Chris Glaser March 2016 Nuances in Ultra-Low Power Designs for Wearable Products Steven Schnier and Chris Glaser March 2016 1 Why is Low Power Needed? Wearables consist of many functions Small Battery with Charger Li-Ion Battery

More information

An High Voltage CMOS Voltage Regulator for automotive alternators with programmable functionalities and full reverse polarity capability

An High Voltage CMOS Voltage Regulator for automotive alternators with programmable functionalities and full reverse polarity capability L. Fanucci, G. Pasetti University of Pisa P. D Abramo, R. Serventi, F. Tinfena Austriamicrosystems P. Tisserand, P. Chassard, L. Labiste - Valeo An High Voltage CMOS Voltage Regulator for automotive alternators

More information

Press Contact: Fujitsu Semiconductor Limited Public Relations Department Inquiries:

Press Contact: Fujitsu Semiconductor Limited Public Relations Department Inquiries: Fujitsu Expands Line of New 8FX 8-bit Microcontrollers for DC Motor Control Optimized for applications in appliances such as microwaves, washing machines, dryers, and electric razors Yokohama, Japan, May

More information

NiMH TH D7/universal fast charger

NiMH TH D7/universal fast charger NiMH TH D7/universal fast charger Introduction The project for this NiMH fast charger originated from the widespread use of AA rechargeable NiMH batteries for the Kenwood TH D7 portable transceiver, common

More information

Sunseeker Sunseek Electrica Electric l a Systems 22 September 2009

Sunseeker Sunseek Electrica Electric l a Systems 22 September 2009 Sunseeker Electrical Systems 22 September 2009 Primary Systems There are four primary electrical systems Solar Array and Array DC to DC Converters Battery and Battery Protection System Drive Motors (Csiro)

More information

User Manual.

User Manual. User Manual E- www.kangaroobike.com Version 1.3 2014 We wish you every success with your investment in a Winther E- Kangaroo, which has set new standards in comfort and userfriendliness. Read through this

More information

Solar Smart Classrooms by Using at Mega 328 Microcontroller

Solar Smart Classrooms by Using at Mega 328 Microcontroller Solar Smart Classrooms by Using at Mega 328 Microcontroller Prof. Mr. Pravin R. Bodade 1 ; Mr. Ashish S. Balpande 2 ; Miss. Ashwini G. Kumare 3 ; Mr. Kartik R. Bhudke 4 & Miss. Pranali P. Deshmukh 5 1

More information

School of Engineering Science Simon Fraser University, Burnaby BC V5A 1S6

School of Engineering Science Simon Fraser University, Burnaby BC V5A 1S6 School of Engineering Science Simon Fraser University, Burnaby BC V5A 1S6 mpc8@sfu.ca October 12, 2011 Professor Mike Sjoerdsma School of Engineering Science Simon Fraser University Burnaby, British Columbia

More information

Sensor Suit for the Visually Impaired

Sensor Suit for the Visually Impaired Sensor Suit for the Visually Impaired Proposed Completion Date 2013 People today that are visually impaired at birth or by misfortune have few options for methods of getting around in their every-day lives.

More information

SP4 DOCUMENTATION. 1. SP4 Reference manual SP4 console.

SP4 DOCUMENTATION. 1. SP4 Reference manual SP4 console. SP4 DOCUMENTATION 1. SP4 Reference manual.... 1 1.1. SP4 console... 1 1.2 Configuration... 3 1.3 SP4 I/O module.... 6 2. Dynamometer Installation... 7 2.1. Installation parts.... 8 2.2. Connectors and

More information

Sequential LED Tail Lights For Ford Mustang

Sequential LED Tail Lights For Ford Mustang Sequential LED Tail Lights For Ford Mustang Project Description Brandon Delgado Western Washington University EET Fall 2013 Page 1 of 14 I. FUNCTIONAL DESCRIPTION: a. Project Summary The Proposed project

More information

ELECTRIC BICYCLE OWNER S MANUAL

ELECTRIC BICYCLE OWNER S MANUAL ELECTRIC BICYCLE OWNER S MANUAL For Owners of EG Oahu 500EX and EG Maui 500EX Electric Bicycle Table of Contents Descriptions: Page Installation Instructions 2 How to install the bicycle out of the box

More information