SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING

Size: px
Start display at page:

Download "SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING"

Transcription

1 SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING By Anirban Banerjee Priya Mehta Surya Teja Tadigadapa Final Report for ECE 445, Senior Design, Fall 2017 TA: Zipeng Wang December 2017 Project No. 4

2 Abstract This paper constitutes the final report for the Self-Sustainable Solar Street Light Charging project undertaken by Team 4 for the Fall 2017 session of ECE 445: Senior Design Laboratory. The project focuses on the charging circuit required for the street light, and is intended to serve as one of three subsystems required for the complete, functional streetlight (the other two subsystems, discharging and user monitoring, have been undertaken by different teams). This report explains in detail the Maximum Power Point Tracking (MPPT) approach used as the basis for the charging circuit, the different circuit designs examined by our team including the final implementation actually used for the project, and the performance of the different modules in the circuit during testing.

3 TABLE OF CONTENTS 1. Introduction Idea Project Overview Design Block Diagram Design Progression Design I Analog Design II Atmega328p Design III C Physical Design Buck Converter MCU Voltage Monitor Current Monitor Battery Charger Component Equations Code Algorithm Implementation Requirements and Verification Buck Converter MCU Voltage Monitor Current Monitor Battery Charging Costs Labour Costs Parts Cost Conclusion Accomplishments Uncertainties Future Work and Improvements Ethical and Safety Considerations References...16 Appendix A: R&V Table.17

4 1. Introduction 1.1 Idea The goal of our project was to design and create the charging circuit for a portable, self contained, self sustaining and user friendly streetlight that could be set up anywhere with minimal effort, independent of the power grid, and would function similarly to a commercial streetlight in providing light during periods of darkness. The full design of the streetlight would consist of three subsystems: a charging circuit (solar panel to battery), a discharging circuit (battery to bulb) and also feature some user monitoring (web/android app that gives details on state of charge and charging efficiency). These subsystems and their interconnections have been shown in Figure 1 below. The focus of our project was be the MPPT solar charge controller block present between the solar panel and lead acid battery in the charging circuit (shown as green in the Figure 1). Figure 1: Block diagram for solar street light 1.2 Project Overview In order to fulfil the self contained and self sustaining requirement of the streetlight, the efficiency of the charging circuit needed to be maximised. Solar panels have IV characteristics that differ from those of most other electronics, and supply varying levels of current and voltage depending on the level of sunlight that falls on the panel s surface. This causes the power output from solar panels to be very inefficient if directly supplied to a battery without an appropriate conversion process. Our project focused on creating an efficient charging system that will maximise the amount of power delivered to the battery from the solar panel. This was achieved by using a method known as Maximum Power Point Tracking (MPPT), which has been discussed in greater detail in section below. Our high level requirement for this charging circuit was that it should charge the lead acid battery at 80% efficiency. 1

5 2. Design 2.1 Block Diagram Figure 2: Block diagram of actual charge controller Figure 2 shows the different modules present within the charging circuit, and can be thought of a zoomed in version of the MPPT solar charge controller block from Figure 1. The electricity generated by the solar panel is passed through a buck converter before being output to the lead acid battery. The input from the solar panel and the output to the battery is both monitored for current and voltage. These readings are sent to a microcontroller unit that operates the buck converter so as to implement MPPT (discussed in more detail in section 2.3.2). 2.2 Design Progression Design I Analog Our first major pivot was changing from creating a chain of systems to creating just the MPPT solar charge controller. Since then during the design review we had decided to build an analog MPPT Solar Charge Controller. After considerable research on the working of MPPT, we decided to move away from this method for several reasons: firstly, it would have required us to hand wind our own inductor, an extremely difficult and time consuming task. Secondly, would have been be very difficult to debug the circuit if every component did not work flawlessly. Thirdly, the circuit was designed assuming impractical ideal case scenarios. Lastly, soldering and removing components every time we want to change something would have make it a very labour intensive process. Figure 3 below shows the schematic for the analogue MPPT charge controller. 2

6 2.2.2 Design II Atmega328p Figure 3: Analog MPPT circuit We then moved to a digital design. We decided that in the interest of points and ease of design, it was more suitable for us to use a microcontroller to power our PWM signals instead of relying on analog components. The main addition to this phase outside of the microcontroller itself was the use of the INA 270 current monitor by TI. Finding this component made our lives significantly easier. It allowed us to capture both voltage and current readings, using which we could capture readings both at the start and end of the circuit and feed them into our microcontroller to drive the PWM signals accordingly. The INA 270 used an I2C based digital connection to communicate with the MCU (atmel atmega328p). After meeting with our TA, we that this design had a few downsides. Firstly, the atmega was not the appropriate choice of MCU for driving PWM signals. Secondly, the atmega chip did not allow us to debug in real time if we needed to. Despite ultimately abandoning this implementation, it was still a very crucial stage in our design process since it gave us a solid understanding of the MPPT circuit and what we were trying to build. We also found a majority of our components and established key requirements that we needed to achieve in order to build our circuit. Figure 4 below shows the schematic for the Atmega328p based MPPT Charge Controller. 3

7 Figure 4: Atmega328p Circuit Design III C200 We eventually settled on the C2000 by Texas Instruments as the MCU for our MPPT Solar Charge controller. The C2000 is well suited to the production of fast PWM signals to run the mosfets in our circuits. Another major advantage offered by it is the ability live debug our circuit. We use header pins for communication between the PCB and MCU and banana cables for communication between the solar panel PCB and battery PCB. One major change it caused, however, was that it was not very well suited to handle I2C connections and this rendered our previous current monitor useless in this schematic. While the microcontroller has I2C ports it requires a considerable amount of complex wrapper code written on top of it to be able to communicate properly with our current monitor. This led us to change our current monitor to INA 138 that sent out analog connections. These analog connections are then deciphered by the ADC on the Microcontroller. We also realized we lacked gate drivers and made important adjustments to our proposed PCB design after making the switch to the C2000. Figure 5 below shows the schematic for this design. Figure 5: Actual eagle schematic of the circuit with C

8 2.3 Physical Design Energy is produced by the solar panel which is rated at 100W and a Voc of 22.5V. The current produced by the solar panel is directed via a banana cable to the PCB and through two diodes connected in parallel and rated at 3.5A each Buck Converter Our buck converter, seen in Figure 6 below, consists of the input capacitors, gate driver, p mosfet, n mosfet, inductor and output capacitors. The two mosfets together replace the diode that is part of a usual buck converter. The input capacitance is rated at about 330uF. The p mosfet and n mosfet (switches) get their signals from a gate driver that amplifies the PWM signals coming from the MCU. The current then moves through the inductor which is rated at 47uH before going through the output capacitance rated at 22uF MCU Figure 6: Buck converter schematic We used the C2000 Launchpad with the Piccolo TMS320F28027 chip, pictured in Figure 7 below. The advantages for using the launchpad instead of just the MCU chip are that it allows for easy testing and live debugging. The MCU is powered by the battery and its primary responsibility is to run the MPPT code that generates PWM signals and take in the monitor readings. We utilize two epwm ports to output the PWM signals and utilize four ADC ports to read the input and output current and voltage readings for the MPPT code. Figure 7: C2000 Launchpad 5

9 2.3.3 Voltage Monitor Voltage is monitored before and after the buck converter, for gauging the efficiency of the buck converter. Voltage monitoring is important as it allows the MPPT algorithm to function, which relies on input voltage and current to modify duty cycles accordingly and also because it is supplied to the team that is responsible for the user monitoring app. The voltage monitoring circuit is shown below in Figure 8. It relies on voltage division and then sends this output to an op amp used for stabilizing. This final output, after passing some additional components, is sent to the ADC pin of the microcontroller Current Monitor Figure 8: Voltage monitor schematic Current is monitored for similar reasons to the voltage monitoring: for MPPT and for supplying to the user monitoring app. The current monitoring circuit is shown in Figure 9 below. A current monitoring chip, the INA138, is utilized for this purpose. The INA138 takes in a current and converts it to voltage using internal resistance in the chip. The voltage goes through an op amp, and, after passing some additional components, is sent to the ADC pin of the microcontroller. Figure 9: Current monitor schematic 6

10 2.3.5 Battery Charger A crucial component of the circuit was the charger IC that connected the output of the buck converter to the battery. The reason we had to eliminate this component on the hardware level was that it caused too big a voltage drop to be practical in our case. Since our design called for us to control the duty cycle of the of the mosfets, we decided to use our code to control the charging of the battery instead. The website of the charge controller by TI UC3906 (one of the most common lead acid battery charge controller) recommends a npn darlington transistor array when we actually need a pnp. Not having caught this early on lead us to design with the NPN transistor array, but on realising that the PNP transistor array causes a huge voltage drop we abandoned this route Component Equations Many of our passive component values were derived from datasheets of the ICs in our circuit. Some had to be derived using fundamental equations: Input voltage monitoring derivation: Output voltage monitoring derivation: R1 22.5R1+R2 2 R (R1 + R 2) 0.911R R R1 R2 (1) R3 15.6R3+R4 2 R (R3 + R 4) 0.872R R4 6.81R3 R4 (2) Based on these derivations and taking base values of 10kΩ for R2 and R4 gives us a value of 102.4kΩ for R1 and 68.1kΩ for R3. Buck Converter Equations: L = (V output (V input V output ))/(I ripple * V input * Switching Frequency) (3) D = V output * Efficiency/V input (4) P input = V input * I input (5) P output = V output * I output (6) Efficiency = (P output / P input ) * 100 (7) 7

11 2.4 Code Algorithm Maximum Power Point Tracking (MPPT) is an algorithm that will find, within the given conditions, the maximum power from a solar panel. The maximum power point is the voltage at which the solar panel produces this maximum power and varies with solar insolation and temperature. Using MPPT allows for the maximum current from a solar panel to be acquired without changing the voltage of the solar panel. A buck converter is utilized for eventually modifying the input current into the battery. The Perturb & Observe method allows us to modify the operating voltage and operating current of the solar panel until the maximum power is acquired. The MPPT charge controller compares the output of the solar panels with the battery voltage. After this, it calculates the best power that the panel can produce to charge the battery and then converts this into the best voltage to get maximum current into the battery. Figure 10 shows the IV curve of the solar panel with the maximum power point. Figure 10: IV curve of solar panel and the Maximum Power Point 8

12 2.4.2 Implementation We implemented the MPPT algorithm through the Perturb and Observe approach in code (Figure 11 below shows a flowchart of how this algorithm works). We had many functions, including several initialization functions that set up the microcontroller properly. Our main functions were Data_Update() and Adj_PWM(). Data_Update() is responsible for retrieving the values from the ADC pins of the microcontroller and accordingly calculating the new power in. In particular, it retrieves input voltage and input current. Adj_PWM() is the function that modifies duty cycles according to the calculated power, as per the MPPT algorithm. Figure 11 shows the flowchart of the MPPT algorithm. Figure 11: MPPT algorithm flowchart 9

13 3. Requirements and Verification A summary of R&V is provided in this table below. The complete list of the requirements and verifications has been attached to this document in Appendix A and individual results in the sections below. Table 1: Requirements and verifications summary Buck Converter MCU Voltage Monitor Current Monitor Battery Charging Buck converter fully functional at low power levels but untested at high power levels. MCU generates required PWM signals and MPPT Code fully functional. Voltage monitoring fully functional. Current monitoring inaccurate because conversion factor needs to be tuned. Battery charging has not been tested. 3.1 Buck Converter When the gate driver is supplied with the same input voltage as the power trace (solar panel output) it amplifies the input PWM signals to the required gate voltages to switch the mosfets. Both the P Mosfet and N Mosfet switched according to the PWM signals sent to them from the gate driver. The output voltage was stepped down from the input voltage according to the duty cycles of the input PWM signals. The buck converter was unit tested at low power levels we were unable to test them at high power levels since our PCB lacked ground plains. Figure 12 shows a plot of the buck converter efficiency and demonstrates it increasing with power. Figure 12: Input Power vs Efficiency 10

14 3.2 MCU In order to test the functionality of the microcontroller code, we connected the C2000 to an oscilloscope and were able to monitor generated PWMs. The MCU successfully generated PWM signals which could be tracked using an oscilloscope (an example can be seen in Figure 13). The MCU was also able to calculate the maximum power point based on input readings and was able to change duty cycle as desired. Figure 13: PWM signals generated by MCU Code. A Top: P Mosfet (50% duty cycle); Bottom: N Mosfet (25% duty cycle). 3.3 Voltage Monitor Our voltage monitoring was fully functional, and close to 2% error on average. As seen in Figure 14 below, there is a very linear relationship between the two axes. The equation on the right is what we used to successfully convert an ADC reading to a value close to the input voltage. In particular, two conversions were needed: one to convert the ADC reading to a digital code, and then one to convert the digital code to a value near the input voltage. The voltage monitoring having a low error value allowed us to have a more efficient MPPT implementation since voltage was utilized in calculations. Figure 14: ADC Results vs Input Voltage 11

15 3.4 Current Monitor Unfortunately, our current monitoring was not functional by the time of the demo. This could have been due to the actual current monitor or op amp not working as expected, but more likely could have been caused by and incorrect conversion from the ADC reading to a current value. Attempting to use a conversion similar to the ones that we successfully used for voltage monitoring gave us a periodic graph that is likely sinusoidal. The graph should have been linear, allowing for a straight mapping between the reading and the converted voltage, which would convert to current. Figure 15 below shows our data for ADC readings vs input supply. Figure 15: ADC Reading vs Input Supply 3.5 Battery Charging In order to actually use our circuit to charge the battery, we would have first needed to completely integrate the three circuit modules (buck converter, current monitoring, and voltage monitoring). Since we were unable to complete integration in time, we were unable to test battery charging using our PCB. 12

16 4. Costs 4.1 Labour Costs Table 2: Labour Costs Labourer Salary/Hour Hours Anirban Banerjee $ Priya Mehta $ Surya Teja Tadigadapa $ Parts Cost Table 3: Parts Cost Description Manufacturer Quantity Cost Solar Panel Renogy 1 $ Lead Acid Battery Renogy 1 $ Capacitors Various 19 $1.05 (Avg) Current Monitors TI 2 $1.78 Diodes Diodes Inc. 2 $0.53 Gate Driver IXYS IC Division 1 $1.89 Inductor Bourns Inc. 1 $7.58 LDO Analog Devices Inc. 1 $3.09 P Channel MOSFET Diodes Inc. 1 $0.67 N Channel MOSFET Vishay Siliconix 1 $1.70 Op Amps TI 4 $2.54 Resistors Various 15 $1.30 (Avg) PCB & Stencil PCBWay 1 $30 Total Cost = Total Parts Cost + Total Labor Cost = $ $ = $

17 5. Conclusion 5.1 Accomplishments We were able to successfully complete some of the major components of our project: microcontroller generation of PWMs via implementation of the MPPT algorithm in code, the buck converter, and the voltage monitoring. The MPPT algorithm successfully generated PWMs that we were able to monitor in an oscilloscope. We were also able to modify the duty cycles, generating different PWMs. The buck converter was fully functional at low power levels and was a major success in the scope of the project: without it, it is unlikely we would have had any meaningful implementation of MPPT as a whole. Our voltage monitor was able to retrieve a correct voltage reading. This was important as it allowed us to have accuracy when calculating input power to modify duty cycles, allowing for efficiency in the Perturb and Observe approach of MPPT. In all, we were happy with our accomplishments in this project. We are computer engineers with very little hardware and power electronics experience. In the beginning of the semester, none of us knew much about solar panel and battery usage, and indeed had never as much as heard of the term MPPT. It was only through this project that we were able to gain exposure to the working of a solar charging circuit, the functionality of MPPT, hardware testing, PCB design, and the use of tools such as the hot air gun for solder paste. We have most definitely learned a great deal from this project and are proud of everything we have achieved. 5.2 Uncertainties The main potential source of error in our circuit is noise in the current and voltage monitors which can cause significant errors with the MPPT algorithm. The internal resistance of battery increases with age and this can cause errors in determining state of charge which affects our charging sequence. If the system is operated at high ambient temperatures, our components may either burn out or have different electrical characteristics from specifications. 5.3 Future Work and Improvements We had several major components of this project working individually but we were not able to integrate the components in the time frame of this project. Next semester, another team may be able to start where we left off in the integration. 14

18 The first step the team would have to take is to make some small changes that have great effect in the success of the Solar Street Light project. The current monitoring conversion, as mentioned earlier, needs to be fixed. Secondly, it is best if a new PCB with ground planes is ordered. The PCB layout is already created; it just needs to be reordered, making sure the files sent to PCBWay and the PCB sent back from PCBWay contain ground planes. This will enable high currents and voltage levels to be tested, bringing the project to the level of a final product. The next step would be for this team to integrate our working components on our PCB and make all the components (buck converter, MPPT algorithm, monitoring) work together. This would take a great deal of time, as unexpected errors can always occur when bringing together sections that were only tested separately. Once this is completed, the charging circuit needs to be connected to the specific solar panel and battery Professor Reinhard had purchased. Once this is done, it can be confirmed that the charging circuit has completed functionality. The final step would involve connecting the charging circuit to the remaining subsystems: the discharging circuit and user monitoring app. Once this is done, we will have a final, working Solar Street Light. We have kept documentation and videos for a future team to follow when picking up our project and integrating our features. 5.4 Ethical and Safety Considerations Of all the components in our project, the lead acid battery has the greatest number of safety considerations. Lead acid batteries are contain lead, a toxic metal, and sulphuric acid, a corrosive agent; and hance must be disposed of carefully. If lead acid batteries are discharged too much or too fast, they can potentially be damaged. Certain temperatures and overcharging also cause lead acid batteries to fail, requiring preventive measures to be taken. In some older models, extreme conditions can even result in the battery exploding. Lead acid battery leakage has the potential to cause serious damage clothing and human skin, as well as other components such as wiring. Hence proper care needs to be taken when dealing with the battery. Another issue is that of the weather effects on our streetlight. It is intended for the streetlight to be self sustainable and be placed outside without being attached to another device. If the attachment of the solar panels and components on the streetlight are not housed properly, it is plausible that high winds can loosen or even completely detach these solar panels or components and cause damage to nearby items or people (after all, the streetlight is expected to function in populated areas with people nearby). We must keep IEEE Ethics Code #1 ( to accept responsibility in making decisions consistent with the safety, health, and welfare of the public... ) and ACM Code #1.2 in mind as our streetlight can affect people s safety if not constructed properly. 15

19 5. References 1) Coder Tronics. (2017). C2000 Solar MPPT tutorial covering the electronics & C code. [online] Available at: tronics.com/c2000 solar mppt tutorial pt1 [Accessed 13 Dec. 2017]. 2) Coder Tronics. (2017). C2000 Solar MPPT tutorial covering the electronics & C code. [online] Available at: tronics.com/c2000 solar mppt tutorial pt2 [Accessed 13 Dec. 2017]. 3) Coder Tronics. (2017). C2000 Solar MPPT tutorial covering the electronics & C code. [online] Available at: tronics.com/c2000 solar mppt tutorial pt3 [Accessed 13 Dec. 2017]. 4) Coder Tronics. (2017). C2000 Solar MPPT tutorial covering the electronics & C code. [online] Available at: tronics.com/c2000 solar mppt tutorial pt4 [Accessed 13 Dec. 2017]. 5) Electronic Circuit Projects. (2017). Simple Solar MPPT Circuit. [online] Available at: circuits.com/simple solar mppt circuit using ic555/ [Accessed 13 Dec. 2017]. 6) Acm.org. (2017). ACM Code of Ethics and Professional Conduct. [online] Available at: acm/acm code of ethics and professional conduct [Accessed 20 Sep. 2017]. 7) ECE 445, (2017). [online] Available at: [Accessed 4 Oct. 2017]. 8) Ieee.org. (2017). IEEE IEEE Code of Ethics. [online] Available at: 8.html [Accessed 20 Sep. 2017]. 9) Solar electric.com. (2017). What is Maximum Power Point Tracking (MPPT). [online] Available at: electric.com/learning center/batteries and charging/mppt solar charge c ontrollers.html [Accessed 29 Sep. 2017]. 10) Ti.com. (2017). TIDA Solar MPPT Charge Controller TI.com. [online] Available at: [Accessed 29 Sep. 2017]. 16

20 Appendix A: R&V Table Buck Converter Requirements A. Gate Driver Amplification Table 4: R&V for Buck Converter Verifications A. B. P Mosfet Switches C. N Mosfet Switches D. Output Voltage is stepped down E. Efficiency is over 80% 1. Power the gate driver. 2. Connect input and output signals to an Oscilloscope. 3. Verify output waveform meets specification. B. 1. Connect Oscilloscope to P Mosfet input and output. 2. Verify the waveform meets specification and is at the correct duty cycle. C. 1. Connect Oscilloscope to N Mosfet input and output. 2. Verify the waveform meets specification and is at the correct duty cycle. D. 1. Check output Voltage across a resistor with a Voltmeter 2. Verify that output voltage is close to ((P Mosfet duty cycle * (1 N Mosfet Duty Cycle)) * Input Voltage) E. 1. Calculate output power (Vo^2/R) and divide by input power (Vi * Ii) 17

21 Voltage Monitor Requirements A. Output voltage monitoring data as a analog signal B. Convert the analog signal to a digital signal via ADC on the MCU C. Send the analog signal to Team 35 Table 5: R&V for Voltage Monitor Verifications A. 1. Test output at 3 input voltage points and ensure linearity. 2. Ensure output is no more than 3.3V for max input voltage. B. 1. Test output at 3 input voltage points and ensure linearity. C. 1. Test output at 3 input voltage points and ensure linearity. 2. Ensure output is no more than 3.3V for max input voltage. Current Monitor Requirements A. Output current monitoring data as a analog signal B. Convert the analog signal to a digital signal via ADC on the MCU C. Send the analog signal to Team 35 Table 6: R&V for Current Monitor Verifications A. 1. Test output at 3 input current points and ensure linearity. 2. Ensure output is no more than 3.3V for max input voltage. B. 1. Test output at 3 input current points and ensure linearity. C. 1. Test output at 3 input voltage points and ensure linearity. 2. Ensure output is no more than 3.3V for max input current. 18

22 Microcontroller Unit Requirements A. Generate PWM signals B. Calculate Maximum Power Point C. Vary duty cycles of the PWM signal based on incoming data Table 7: R&V for Microcontroller Unit Verifications A. 1. Generate 2 PWM signals of varying duty cycles at 15kHZ. 2. Connect MCU pins to Oscilloscope and verify waveforms meet specifications (Duty Cycle). B. 1. Get 2 different input power data from voltage and current readings for 2 cycles of the code. 2. Calculate power for both cycles. C. 1. Based on current power and new power from B, vary the duty cycle. Battery Charging Requirements A. Charge the battery at the 3 different charging states. Table 8: R&V for Battery Charging Verifications A. 1. Connect Buck converter output to a 10% SOC lead acid battery through an ammeter and voltmeter. 2. Observe state of charge of battery as system progresses through charging cycle. 19

DANGER DETECTING HEADPHONES

DANGER DETECTING HEADPHONES DANGER DETECTING HEADPHONES By Tae Hun Ahn Daniel Bang Yoon Mo Yang Final Report for ECE 445, Senior Design, Fall 2016 TA: Zipeng Wang 07 December 2016 Project No. 47 Abstract This report describes the

More information

2015 International Future Energy Challenge Topic B: Battery Energy Storage with an Inverter That Mimics Synchronous Generators. Qualification Report

2015 International Future Energy Challenge Topic B: Battery Energy Storage with an Inverter That Mimics Synchronous Generators. Qualification Report 2015 International Future Energy Challenge Topic B: Battery Energy Storage with an Inverter That Mimics Synchronous Generators Qualification Report Team members: Sabahudin Lalic, David Hooper, Nerian Kulla,

More information

Pulse Sensor Individual Progress Report

Pulse Sensor Individual Progress Report Pulse Sensor Individual Progress Report TA: Kevin Chen ECE 445 March 31, 2015 Name: Ying Wang NETID: ywang360 I. Overview 1. Objective This project intends to realize a device that can read the human pulse

More information

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 63 CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 3.1 INTRODUCTION The power output of the PV module varies with the irradiation and the temperature and the output

More information

Chapter 3 : Closed Loop Current Mode DC\DC Boost Converter

Chapter 3 : Closed Loop Current Mode DC\DC Boost Converter Chapter 3 : Closed Loop Current Mode DC\DC Boost Converter 3.1 Introduction DC/DC Converter efficiently converts unregulated DC voltage to a regulated DC voltage with better efficiency and high power density.

More information

MUSIC RESPONSIVE LIGHT SYSTEM

MUSIC RESPONSIVE LIGHT SYSTEM MUSIC RESPONSIVE LIGHT SYSTEM By Andrew John Groesch Final Report for ECE 445, Senior Design, Spring 2013 TA: Lydia Majure 1 May 2013 Project 49 Abstract The system takes in a musical signal as an acoustic

More information

Photovoltaic Battery Charging System Based on PIC16F877A Microcontroller

Photovoltaic Battery Charging System Based on PIC16F877A Microcontroller Photovoltaic Battery Charging System Based on PIC16F877A Microcontroller Zaki Majeed Abdu-Allah, Omar Talal Mahmood, Ahmed M. T. Ibraheem AL-Naib Abstract This paper presents the design and practical implementation

More information

Physics 309 Lab 3 Bipolar junction transistor

Physics 309 Lab 3 Bipolar junction transistor Physics 39 Lab 3 Bipolar junction transistor The purpose of this third lab is to learn the principles of operation of a bipolar junction transistor, how to characterize its performances, and how to use

More information

EEC 134 Final Report

EEC 134 Final Report EEC 134 Final Report Team Falcon 9 Alejandro Venegas Marco Venegas Alexis Torres Gerardo Abrego Abstract: EEC 134 By Falcon 9 In the EEC 134 course the focus is on RF/microwave systems design. The main

More information

Hearing Aid Redesign: Test Plans ELECTRICAL TESTING

Hearing Aid Redesign: Test Plans ELECTRICAL TESTING ELECTRICAL TESTING Table of Contents: Number Test Page EE 1 Switch 2 EE 2 Speaker 7 EE 3 Sound Processing 11 EE 4 Microphone 14 EE 5 Battery Charger 18 EE 6 Bandpass and Pre-Amplification 20 EE 7 System

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear Single-phase Variable Frequency Switch Gear Eric Motyl, Leslie Zeman Advisor: Professor Steven Gutschlag Department of Electrical and Computer Engineering Bradley University, Peoria, IL May 13, 2016 ABSTRACT

More information

Design & Implementation of Controller Based Buck-Boost Converter for Small Wind Turbine

Design & Implementation of Controller Based Buck-Boost Converter for Small Wind Turbine IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 10, Issue 6 Ver. I (Nov Dec. 2015), PP 44-50 www.iosrjournals.org Design & Implementation

More information

EE152 Final Project Report

EE152 Final Project Report LPMC (Low Power Motor Controller) EE152 Final Project Report Summary: For my final project, I designed a brushless motor controller that operates with 6-step commutation with a PI speed loop. There are

More information

Inside The imax B6 Balance Charger

Inside The imax B6 Balance Charger University of Canterbury Competitive Robotics (UCCR1) VEX Texas Instruments Electronics Online Challenge Jack Wilkie Table of Contents Introduction... 2 Disassembly... 2 Analysis... 4 Conclusion... 6 Jack

More information

RF System: Baseband Application Note

RF System: Baseband Application Note Jimmy Hua 997227433 EEC 134A/B RF System: Baseband Application Note Baseband Design and Implementation: The purpose of this app note is to detail the design of the baseband circuit and its PCB implementation

More information

Design Document. Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018

Design Document. Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018 Design Document Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018 1. Introduction 1.1 Objective Code is everywhere in the world and coding has become an essential skill for not only

More information

WIRELESS LAPTOP CHARGER

WIRELESS LAPTOP CHARGER WIRELESS LAPTOP CHARGER By Enrique Ramirez Jason Kao Onur Cam Final Report for ECE 445, Senior Design, Spring 2018 TA: Zhen Qin 2 May 2018 Project No. 37 Abstract We designed a system that allows a user

More information

CHAPTER-3 Design Aspects of DC-DC Boost Converter in Solar PV System by MPPT Algorithm

CHAPTER-3 Design Aspects of DC-DC Boost Converter in Solar PV System by MPPT Algorithm CHAPTER-3 Design Aspects of DC-DC Boost Converter in Solar PV System by MPPT Algorithm 44 CHAPTER-3 DESIGN ASPECTS OF DC-DC BOOST CONVERTER IN SOLAR PV SYSTEM BY MPPT ALGORITHM 3.1 Introduction In the

More information

Instructions for the final examination:

Instructions for the final examination: School of Information, Computer and Communication Technology Sirindhorn International Institute of Technology Thammasat University Practice Problems for the Final Examination COURSE : ECS304 Basic Electrical

More information

CHAPTER 7 HARDWARE IMPLEMENTATION

CHAPTER 7 HARDWARE IMPLEMENTATION 168 CHAPTER 7 HARDWARE IMPLEMENTATION 7.1 OVERVIEW In the previous chapters discussed about the design and simulation of Discrete controller for ZVS Buck, Interleaved Boost, Buck-Boost, Double Frequency

More information

Week 8 AM Modulation and the AM Receiver

Week 8 AM Modulation and the AM Receiver Week 8 AM Modulation and the AM Receiver The concept of modulation and radio transmission is introduced. An AM receiver is studied and the constructed on the prototyping board. The operation of the AM

More information

Laboratory Project 1a: Power-Indicator LED's

Laboratory Project 1a: Power-Indicator LED's 2240 Laboratory Project 1a: Power-Indicator LED's Abstract-You will construct and test two LED power-indicator circuits for your breadboard in preparation for building the Electromyogram circuit in Lab

More information

Project Name: SpyBot

Project Name: SpyBot EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 23, 2013 Project Name: SpyBot Team Members: Name: Josh Kurland Name: Parker Karaus Email: joshkrlnd@gmail.com Email: pbkaraus@ufl.edu

More information

POWER GENERATION USING PIEZOELECTRIC SYSTEM FOR STREET LIGHT SYSTEM

POWER GENERATION USING PIEZOELECTRIC SYSTEM FOR STREET LIGHT SYSTEM POWER GENERATION USING PIEZOELECTRIC SYSTEM FOR STREET LIGHT SYSTEM 1 NISHCHITHA H V PRASAD, 2 ABHAY A DESHPANDE, 3 S PRADEEPA, 4 SIVA SUBBARAOPATTANGE 1,2 R V C E Bangalore, 3 B M S C E Bangalore, 4 N

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS 6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS Laboratory based hardware prototype is developed for the z-source inverter based conversion set up in line with control system designed, simulated and discussed

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

GCSE Electronics. Scheme of Work

GCSE Electronics. Scheme of Work GCSE Electronics Scheme of Work Week Topic Detail Notes 1 Practical skills assemble a circuit using a diagram recognize a component from its physical appearance (This is a confidence building/motivating

More information

A Solution to Simplify 60A Multiphase Designs By John Lambert & Chris Bull, International Rectifier, USA

A Solution to Simplify 60A Multiphase Designs By John Lambert & Chris Bull, International Rectifier, USA A Solution to Simplify 60A Multiphase Designs By John Lambert & Chris Bull, International Rectifier, USA As presented at PCIM 2001 Today s servers and high-end desktop computer CPUs require peak currents

More information

Photovoltaic Systems I EE 446/646

Photovoltaic Systems I EE 446/646 Photovoltaic Systems I EE 446/646 PV System Types & Goal Types of PV Systems: Grid-tied systems that feed power directly into the utility grid, Residential Systems (1-10kW) Commercial/industrial systems

More information

Electrical Engineer. Lab2. Dr. Lars Hansen

Electrical Engineer. Lab2. Dr. Lars Hansen Electrical Engineer Lab2 Dr. Lars Hansen David Sanchez University of Texas at San Antonio May 5 th, 2009 Table of Contents Abstract... 3 1.0 Introduction and Product Description... 3 1.1 Problem Specifications...

More information

FIELD- EFFECT TRANSISTORS: MOSFETS

FIELD- EFFECT TRANSISTORS: MOSFETS FIELD- EFFECT TRANSISTORS: MOSFETS LAB 8: INTRODUCTION TO FETS AND USING THEM AS CURRENT CONTROLLERS As discussed in the last lab, transistors are the basic devices providing control of large currents

More information

Touchless Control: Hand Motion Triggered Light Timer

Touchless Control: Hand Motion Triggered Light Timer Touchless Control: Hand Motion Triggered Light Timer 6.101 Final Project Report Justin Graves Spring 2018 1 Introduction Often times when you enter a new room you are troubled with finding the light switch

More information

An Analog Phase-Locked Loop

An Analog Phase-Locked Loop 1 An Analog Phase-Locked Loop Greg Flewelling ABSTRACT This report discusses the design, simulation, and layout of an Analog Phase-Locked Loop (APLL). The circuit consists of five major parts: A differential

More information

DESIGN OF SWITCHED MODE POWER SUPPLY

DESIGN OF SWITCHED MODE POWER SUPPLY DESIGN OF SWITCHED MODE POWER SUPPLY Monalisa Das 1, Dr. P.R Thakura 2 1,2 Dept.of Electrical and Electronics Engineering, BIT Mesra, India ABSTRACT This paper presents the design of SMPS. The fly back

More information

Fluxgate Magnetometer

Fluxgate Magnetometer 6.101 Final Project Proposal Woojeong Elena Byun Jack Erdozain Farita Tasnim 7 April 2016 Fluxgate Magnetometer Motivation: A fluxgate magnetometer is a highly precise magnetic field sensor. Its typical

More information

Applications of diodes

Applications of diodes Applications of diodes Learners should be able to: (a) describe the I V characteristics of a silicon diode (b) describe the use of diodes for component protection in DC circuits and half-wave rectification

More information

Physics 120 Lab 1 (2018) - Instruments and DC Circuits

Physics 120 Lab 1 (2018) - Instruments and DC Circuits Physics 120 Lab 1 (2018) - Instruments and DC Circuits Welcome to the first laboratory exercise in Physics 120. Your state-of-the art equipment includes: Digital oscilloscope w/usb output for SCREENSHOTS.

More information

operation, continuous current in L, very low ripple in Vout, Vin is constant, and = + V out

operation, continuous current in L, very low ripple in Vout, Vin is constant, and = + V out EE462L, Power Electronics, Test 2. Name You must show all work to receive credit. October 15, 2010 Problem 1. Boost Converter. Use the standard assumptions (i.e., lossless, steady-state Vout 1 operation,

More information

Cypress Robot Kit Final Report

Cypress Robot Kit Final Report Cypress Robot Kit Final Report Team Members: Alvin Wu Byung Joo Park Todd Nguyen Teaching Assistant: Katherine O Kane ECE 445 Group #5 December 7, 2016 Abstract The Programmable System-on-Chip (PSoC) made

More information

Solar Array Maximum Powerpoint Tracker

Solar Array Maximum Powerpoint Tracker Solar Array Maximum Powerpoint Tracker Michigan State University Senior Design Capstone ECE 480, Team 8 Fall 2014 Project Sponsor Michigan State University Solar Car Team Project Facilitator Bingseng Wang

More information

1A 1.5MHz PFM/PWM Synchronous Step-Down Converter. January 2014 Rev FEATURES. Fig. 1: XRP6658 Application Diagram

1A 1.5MHz PFM/PWM Synchronous Step-Down Converter. January 2014 Rev FEATURES. Fig. 1: XRP6658 Application Diagram January 2014 Rev. 1.6.0 GENERAL DESCRIPTION The XRP6658 is a synchronous current mode PWM step down (buck) converter capable of delivering up to 1 Amp of current and optimized for portable battery-operated

More information

Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR

Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR EE 300W, Section 6 Professor Tim Wheeler Rui Xia, Yuanpeng Liao and Ashwin Ramnarayanan Table of Contents Introduction...2

More information

Electric Circuit Fall 2016 Pingqiang Zhou LABORATORY 7. RC Oscillator. Guide. The Waveform Generator Lab Guide

Electric Circuit Fall 2016 Pingqiang Zhou LABORATORY 7. RC Oscillator. Guide. The Waveform Generator Lab Guide LABORATORY 7 RC Oscillator Guide 1. Objective The Waveform Generator Lab Guide In this lab you will first learn to analyze negative resistance converter, and then on the basis of it, you will learn to

More information

Formal Report of. Project 2: Advanced Multimeter using VHDL

Formal Report of. Project 2: Advanced Multimeter using VHDL EECE 280 & APSC 201 Formal Report of Project 2: Advanced Multimeter using VHDL Group: B7 Kelvin A Jae Yeong B Amelia C Chao J Rohit S Instructor: Dr. Joseph Yan (EECE 280) Dr. Jesus Calvino (EECE280) Mrs.

More information

CHAPTER 3 CUK CONVERTER BASED MPPT SYSTEM USING ADAPTIVE PAO ALGORITHM

CHAPTER 3 CUK CONVERTER BASED MPPT SYSTEM USING ADAPTIVE PAO ALGORITHM 52 CHAPTER 3 CUK CONVERTER BASED MPPT SYSTEM USING ADAPTIVE PAO ALGORITHM 3.1 INTRODUCTION The power electronics interface, connected between a solar panel and a load or battery bus, is a pulse width modulated

More information

Lab 10: Oscillators (version 1.1)

Lab 10: Oscillators (version 1.1) Lab 10: Oscillators (version 1.1) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive equipment.

More information

Chapter 1: DC circuit basics

Chapter 1: DC circuit basics Chapter 1: DC circuit basics Overview Electrical circuit design depends first and foremost on understanding the basic quantities used for describing electricity: voltage, current, and power. In the simplest

More information

AUTOMATIC CLOTH FOLDING MACHINE

AUTOMATIC CLOTH FOLDING MACHINE AUTOMATIC CLOTH FOLDING MACHINE. By Xudong Li Anran Su Suicheng Zhan Final Report for ECE 445, Senior Design, Spring 2017 TA: Yuchen He 3 May 2017 Project No. 43 Abstract The purpose of this project is

More information

Lab Equipment EECS 311 Fall 2009

Lab Equipment EECS 311 Fall 2009 Lab Equipment EECS 311 Fall 2009 Contents Lab Equipment Overview pg. 1 Lab Components.. pg. 4 Probe Compensation... pg. 8 Finite Instrumentation Impedance. pg.10 Simulation Tools..... pg. 10 1 - Laboratory

More information

EECS 473 Advanced Embedded Systems

EECS 473 Advanced Embedded Systems EECS 473 Advanced Embedded Systems Lecture 15: Power review & Switching power supplies (again) A number of slides taken from UT-Austin s EE462L power electronics class. http://users.ece.utexas.edu/~kwasinski/ee462ls14.html

More information

CONSONANCE. 4A, Standalone Li-ion Battery Charger IC With Photovoltaic Cell MPPT Function CN3791. General Descriptions: Features: Pin Assignment:

CONSONANCE. 4A, Standalone Li-ion Battery Charger IC With Photovoltaic Cell MPPT Function CN3791. General Descriptions: Features: Pin Assignment: 4A, Standalone Li-ion Battery Charger IC With Photovoltaic Cell MPPT Function CN3791 General Descriptions: The CN3791 is a PWM switch-mode lithium ion battery charger controller that can be powered by

More information

Final Project Stereo Audio Amplifier Final Report

Final Project Stereo Audio Amplifier Final Report The George Washington University School of Engineering and Applied Science Department of Electrical and Computer Engineering Final Project Stereo Audio Amplifier Final Report Daniel S. Boucher ECE 20-32,

More information

ECE 445 Fall RFI Detector Design Document

ECE 445 Fall RFI Detector Design Document ECE 445 Fall 2017 RFI Detector Design Document October 5, 2017 Team 13: TA: Jamie Brunskill Tyler Shaw Kyle Stevens Zipeng Wang 1 Introduction 1.1 Objective The Arecibo Observatory in Puerto Rico asks

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

Analog Effect Pedals. EE333 Project 1. Francisco Alegria and Josh Rolles

Analog Effect Pedals. EE333 Project 1. Francisco Alegria and Josh Rolles Analog Effect Pedals EE333 Project 1 Francisco Alegria and Josh Rolles Introduction For the first project, we ve chosen to design two analog guitar effect pedals. This report will discuss the schematic

More information

Electronic Instrumentation ENGR-4300 Fall 2004 Section Experiment 7 Introduction to the 555 Timer, LEDs and Photodiodes

Electronic Instrumentation ENGR-4300 Fall 2004 Section Experiment 7 Introduction to the 555 Timer, LEDs and Photodiodes Experiment 7 Introduction to the 555 Timer, LEDs and Photodiodes Purpose: In this experiment, we learn a little about some of the new components which we will use in future projects. The first is the 555

More information

Vacuum Tube Amplifier

Vacuum Tube Amplifier Vacuum Tube Amplifier ECE 445 Design Document Qichen Jin and Bingqian Ye Group 1 TA: Zhen Qin Table of Contents 1 Introduction. 1 1.1 Objective.. 1 1.2 Background. 1 1.3 High-level requirements.. 2 2 Design..

More information

Low Cost Screening Audiometer

Low Cost Screening Audiometer Abstract EE 389 EDL Report, EE Dept. IIT Bombay, submitted on Nov.2004 Low Cost Screening Audiometer Group No.: D3 Chirag Jain 01d07018 Prashant Yadav 01d07024 Puneet Parakh 01d07007 Supervisor: Prof.

More information

MAXIMUM POWER POINT TRACKING OF PV ARRAYS UNDER PARTIAL SHADING CONDITION USING SEPIC CONVERTER

MAXIMUM POWER POINT TRACKING OF PV ARRAYS UNDER PARTIAL SHADING CONDITION USING SEPIC CONVERTER MAXIMUM POWER POINT TRACKING OF PV ARRAYS UNDER PARTIAL SHADING CONDITION USING SEPIC CONVERTER Sreekumar 1 A V, Arun Rajendren 2 1 M.Tech Student, Department of EEE, Amrita School of Engineering, Kerala,

More information

Proposed System Model and Simulation for Three Phase Induction Motor Operation with Single PV Panel

Proposed System Model and Simulation for Three Phase Induction Motor Operation with Single PV Panel Proposed System Model and Simulation for Three Phase Induction Motor Operation with Single PV Panel Eliud Ortiz-Perez, Ricardo Maldonado, Harry O Neill, Eduardo I. Ortiz-Rivera (IEEE member) University

More information

Constant Speed Drive Control for a Wound Rotor Induction Motor

Constant Speed Drive Control for a Wound Rotor Induction Motor Constant Speed Drive Control for a Wound Rotor Induction Motor Submitted To Kapil Gulati Prepared By Scott Young Wen Shan Yen EE464 Senior Design Project Electrical and Computer Engineering Department

More information

UM1360 Evaluation Board User s Guide

UM1360 Evaluation Board User s Guide UM1360 Evaluation Board User s Guide Version Date Provider Approve Note 1.0 2012-11-02 LB Initial version. Table of Contents 1. Board Information 1.1 Schematic 1.2 PCB Layout 1.3 Jumper and Test Point

More information

10A Current Mode Non-Synchronous PWM Boost Converter

10A Current Mode Non-Synchronous PWM Boost Converter 10A Current Mode Non-Synchronous PWM Boost Converter General Description The is a current mode boost DC-DC converter. It is PWM circuitry with built-in 15mΩ power MOSFET make this regulator highly power

More information

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 100 CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 7.1 INTRODUCTION An efficient Photovoltaic system is implemented in any place with minimum modifications. The PV energy conversion

More information

Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region

Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region The field effect transistor (FET) is a three-terminal device can be used in two extreme ways as an active element in a circuit. One is

More information

Bring your textbook to lab.

Bring your textbook to lab. Bring your textbook to lab. Electrical & Computer Engineering Department ECE 2100 Experiment No. 11 Introduction to MOSFET Transistors A. Stolp, 4/3/01 rev,4/6/03 Minimum required points = 46 Recommend

More information

ENGR-4300 Fall 2006 Project 3 Project 3 Build a 555-Timer

ENGR-4300 Fall 2006 Project 3 Project 3 Build a 555-Timer ENGR-43 Fall 26 Project 3 Project 3 Build a 555-Timer For this project, each team, (do this as team of 4,) will simulate and build an astable multivibrator. However, instead of using the 555 timer chip,

More information

Current Rebuilding Concept Applied to Boost CCM for PF Correction

Current Rebuilding Concept Applied to Boost CCM for PF Correction Current Rebuilding Concept Applied to Boost CCM for PF Correction Sindhu.K.S 1, B. Devi Vighneshwari 2 1, 2 Department of Electrical & Electronics Engineering, The Oxford College of Engineering, Bangalore-560068,

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

Putting it all Together

Putting it all Together ECE 2C Laboratory Manual 5b Putting it all Together.continuation of Lab 5a In-Lab Procedure At this stage you should have your transmitter circuit hardwired on a vectorboard, and your receiver circuit

More information

EE 233 Circuit Theory Lab 4: Second-Order Filters

EE 233 Circuit Theory Lab 4: Second-Order Filters EE 233 Circuit Theory Lab 4: Second-Order Filters Table of Contents 1 Introduction... 1 2 Precautions... 1 3 Prelab Exercises... 2 3.1 Generic Equalizer Filter... 2 3.2 Equalizer Filter for Audio Mixer...

More information

September 2010 Rev FEATURES. Fig. 1: XRP6668 Application Diagram

September 2010 Rev FEATURES. Fig. 1: XRP6668 Application Diagram September 2010 Rev. 1.0.0 GENERAL DESCRIPTION The XRP6668 is a dual channel synchronous current mode PWM step down (buck) converter capable of delivering up to 1 Amp of current per channel and optimized

More information

Using the EVM: PFC Design Tips and Techniques

Using the EVM: PFC Design Tips and Techniques PFC Design Tips and Techniques Features: Bare die attach with epoxy Gold wire bondable Integral precision resistors Reduced size and weight High temperature operation Solder ready surfaces for flip chips

More information

Overview of the MSA 12/30/10

Overview of the MSA 12/30/10 Overview of the MSA 12/30/10 Introduction The purpose of this document is to provide an overview of the capabilities and construction of the MSA to help potential builders get oriented. Much more detailed

More information

Bridge Measurement Systems

Bridge Measurement Systems Section 5 Outline Introduction to Bridge Sensors Circuits for Bridge Sensors A real design: the ADS1232REF The ADS1232REF Firmware This presentation gives an overview of data acquisition for bridge sensors.

More information

Design and Implementation of Microcontroller Low Voltage Switched 1.5 KVA Pulse Width Modulation Inverter System

Design and Implementation of Microcontroller Low Voltage Switched 1.5 KVA Pulse Width Modulation Inverter System Design and Implementation of Microcontroller Low Voltage Switched 1.5 KVA Pulse Width Modulation Inverter System 1 Nwokoye, A.O.C, 2 Ikenga, O.A, 3 Anene C.R Department of physics and industrial physics,

More information

Developement of a digitally controlled low power single phase inverter for grid connected solar panel

Developement of a digitally controlled low power single phase inverter for grid connected solar panel Developement of a digitally controlled low power single phase inverter for grid connected solar panel Raphael Marguet Master of Science in Electric Power Engineering Submission date: January 2010 Supervisor:

More information

CHAPTER 5 MPPT OF PV MODULE BY CONVENTIONAL METHODS

CHAPTER 5 MPPT OF PV MODULE BY CONVENTIONAL METHODS 85 CHAPTER 5 MPPT OF PV MODULE BY CONVENTIONAL METHODS 5.1 PERTURB AND OBSERVE METHOD It is well known that the output voltage and current and also the output power of PV panels vary with atmospheric conditions

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear Single-phase Variable Frequency Switch Gear Eric Motyl, Leslie Zeman Advisor: Professor Steven Gutschlag Department of Electrical and Computer Engineering Bradley University, Peoria, IL October 15, 2015

More information

Exercise 8. The Four-Quadrant Chopper EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. The Four-Quadrant Chopper

Exercise 8. The Four-Quadrant Chopper EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. The Four-Quadrant Chopper Exercise 8 The Four-Quadrant Chopper EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the operation of the four-quadrant chopper. DISCUSSION OUTLINE The Discussion of

More information

RC Filters and Basic Timer Functionality

RC Filters and Basic Timer Functionality RC-1 Learning Objectives: RC Filters and Basic Timer Functionality The student who successfully completes this lab will be able to: Build circuits using passive components (resistors and capacitors) from

More information

Smart Ocean Wave Energy Converter ECE 1616A

Smart Ocean Wave Energy Converter ECE 1616A Smart Ocean Wave Energy Converter ECE 1616A Nana Ahiabli, Andrew Budd, John Jacquinet Faculty Advisor: Peng Zhang Graduate Advisor: Taofeek Orekan Overview Recap Generator Improvements 3-Coil system Mechanical

More information

Microcontroller Based MPPT Buck-Boost Converter

Microcontroller Based MPPT Buck-Boost Converter GRD Journals- Global Research and Development Journal for Engineering Volume 1 Issue 6 May 2016 ISSN: 2455-5703 Microcontroller Based MPPT Buck-Boost Converter Anagha Mudki Assistant Professor Department

More information

FLEXUSB Charger Final Project Report. Alex Sloboda and Fiona Paine

FLEXUSB Charger Final Project Report. Alex Sloboda and Fiona Paine FLEXUSB Charger 6.101 Final Project Report Alex Sloboda and Fiona Paine Abstract Our goal in this project was to design a USB charger that could run off of any common battery from at least 1.5V to 12V.

More information

King Fahd University of Petroleum and Minerals. Department of Electrical Engineering

King Fahd University of Petroleum and Minerals. Department of Electrical Engineering King Fahd University of Petroleum and Minerals Department of Electrical Engineering AN OPEN LOOP RATIONAL SPEED CONTROL OF COOLING FAN UNDER VARYING TEMPERATURE Done By: Al-Hajjaj, Muhammad Supervised

More information

The analysis and layout of a Switching Mode

The analysis and layout of a Switching Mode The analysis and layout of a Switching Mode Power Supply The more knowledge you have about a switching mode power supply, the better chances your job works on layout. Introductions various degrees of their

More information

FP A Current Mode Non-Synchronous PWM Boost Converter

FP A Current Mode Non-Synchronous PWM Boost Converter 10A Current Mode Non-Synchronous PWM Boost Converter General Description The is a current mode boost DC-DC converter. It is PWM circuitry with built-in 15mΩ power MOSFET make this regulator highly power

More information

The table below gives some summary facts to the two set of data and show that they correlate to a high degree of the course of a year.

The table below gives some summary facts to the two set of data and show that they correlate to a high degree of the course of a year. System Simulations Following the PDR presentation, it became obvious we needed away to better assess our design decisions and test whether they were feasible. In the following system simulations the key

More information

Prototype Testing Lab Results for INA116 Instrumentation Amplifier

Prototype Testing Lab Results for INA116 Instrumentation Amplifier 1 Prototype Testing Lab Results for INA116 Instrumentation Amplifier This document provides an overview of our lab test results with INA116 Instrumentation Amplifier. Our goal is to obtain accurate ph

More information

All parts needed to build sensor board obtained. RTD sensor is expected to arrive on October 26.

All parts needed to build sensor board obtained. RTD sensor is expected to arrive on October 26. Progress Report I DATE : October 25, 2012 FROM : ECE480 Capstone Project Team 5 TO : Prof. Strangas SUBJECT : Progress on Wireless Sensing System for Concrete Curing Purpose Statement This progress report

More information

Practical 2P12 Semiconductor Devices

Practical 2P12 Semiconductor Devices Practical 2P12 Semiconductor Devices What you should learn from this practical Science This practical illustrates some points from the lecture courses on Semiconductor Materials and Semiconductor Devices

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy EE320L Electronics I Laboratory Laboratory Exercise #6 Current-Voltage Characteristics of Electronic Devices By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las

More information

The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei

The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei Casey Labuda Aaron VanDeCasteele Matthew Nee Introduction Safely extinguish any candle Helps prevent fires Allows lifetime of candle to

More information

Preliminary Design Report. Project Title: Search and Destroy

Preliminary Design Report. Project Title: Search and Destroy EEL 494 Electrical Engineering Design (Senior Design) Preliminary Design Report 9 April 0 Project Title: Search and Destroy Team Member: Name: Robert Bethea Email: bbethea88@ufl.edu Project Abstract Name:

More information

ECE 445 Design Document Active AC-DC Converter for the Power Lab s Wind Turbine Team #11 Fall 2018

ECE 445 Design Document Active AC-DC Converter for the Power Lab s Wind Turbine Team #11 Fall 2018 ECE 445 Design Document Active AC-DC Converter for the Power Lab s Wind Turbine Team #11 Fall 2018 By: Alec Biesterfeld (bstrfld2), Tyler Rasmussen (trasmus2), Ben Scrementi (scremen2) TA: Evan Widloski

More information

Field Effect Transistors

Field Effect Transistors Field Effect Transistors Purpose In this experiment we introduce field effect transistors (FETs). We will measure the output characteristics of a FET, and then construct a common-source amplifier stage,

More information

EE 300W 001 Lab 2: Optical Theremin. Cole Fenton Matthew Toporcer Michael Wilson

EE 300W 001 Lab 2: Optical Theremin. Cole Fenton Matthew Toporcer Michael Wilson EE 300W 001 Lab 2: Optical Theremin Cole Fenton Matthew Toporcer Michael Wilson March 8 th, 2015 2 Abstract This document serves as a design review to document our process to design and build an optical

More information

Non-Synchronous PWM Boost Controller for LED Driver

Non-Synchronous PWM Boost Controller for LED Driver Non-Synchronous PWM Boost Controller for LED Driver General Description The is boost topology switching regulator for LED driver. It provides built-in gate driver pin for driving external N-MOSFET. The

More information

AUR MHz, 1A, Step-Down DC-DC Converter. Features. Description. Applications. Package Information. Order Information

AUR MHz, 1A, Step-Down DC-DC Converter. Features. Description. Applications. Package Information. Order Information 1.5MHz, 1A, Step-Down DC-DC Converter Features High efficiency Buck Power Converter Low Quiescent Current 1A Output Current Adjustable Output Voltage from 1V to 3.3V Wide Operating Voltage Ranges : 2.5

More information

ECE 6770 FINAL PROJECT

ECE 6770 FINAL PROJECT ECE 6770 FINAL PROJECT POINT TO POINT COMMUNICATION SYSTEM Submitted By: Omkar Iyer (Omkar_iyer82@yahoo.com) Vamsi K. Mudarapu (m_vamsi_krishna@yahoo.com) MOTIVATION Often in the real world we have situations

More information