There are no existing solar design programs developed specifically for a non reservation

Size: px
Start display at page:

Download "There are no existing solar design programs developed specifically for a non reservation"

Transcription

1 - 1 - Solar Design Program There are no existing solar design programs developed specifically for a non reservation based Native American community (Bernal-Agustín et. al 2007). In addition there are no existing solar design programs that include negative refraction solar cells manufactured from metamaterials (Liu, 2011). These solar cells use a negative refractive lens that bends sunlight in the opposite direction to theoretically produce more solar energy output in the same area (Leonhardt & Philbin, 2008). Excel spreadsheets are one approach used to develop mathematical and computational or computer simulation modeling. Excel is not only a freely available program for anyone with a Microsoft Windows operating system but is also powerful and versatile (Barth et. al 2009). One example of an Excel based solar design program uses a time step simulation that calculates energy output at predetermined intervals such as 15 minutes. The energy output for each appliance is listed as well as the type of appliance (Richardson & Thomson, 2011). The simulation model is written in Visual Basic (VBA) and runs as a VBA macro within the Excel spreadsheet. It is open source, which means that programmers can add to the code or modify it as they require (Richardson & Thomson, 2011). An Excel based design program will be developed and tested in order to determine how effective a negative refraction solar power system will be. The simulation model will use a comparison analysis of a negative refraction solar cell manufactured with metamaterials to a solar cell manufactured with the traditional photovoltaic (PV) materials. Power outputs of both will be compared as well as estimated manufacturing and design installation costs. A portion of the simulation model will be written in Visual Basic for Applications (VBA), the programming language used for Excel spreadsheets. The format for the Excel design program is follows. There will be a graphical user interface(gui) that will be accessed through a web site on renewable energy. This site can be

2 - 2 - lined to the other sites or used in a customer service portal or enterprise planning system. The user will be given a series of inputs. These inputs consist of hours per day for lights, television, HVAC, radios, computers, refrigerators, washers and dryers, and monthly bills. The design program will then calculate the desired ilowatt solar system, the number of solar panels for both photovoltaic and metamaterial, the costs for each system, and the cost savings for photovoltaic and metamaterial compared to the utility bills. In addition the carbon emissions will be calculated and compared to how many gallons of gasoline and how many trees planted will the system equal over its lifespan. The data used for this portion of the model were obtained from and All geographical locations are assumed to be Prescott Valley, Arizona. This is the location of Northcentral University, and the principle researcher owns a home there. The VBA section of the design program will calculate the levelized cost of energy and the maximum power curve for the voltage output (Lu et. al 2007). The levelized cost of energy (LCE) is the total sum of the purchase cost and the maintenance costs over the lifespan of the system. This number is expressed as a ratio between the total the cost of the system over the total energy in ilowatts per year (Lu et. al 2007). It is an important calculation in determining the program of a renewable energy system. The equation is given as LCE = ( COi / yi )/ Ean = ( COpv / Ypv) / Eean( γ ) Where COi is the sum of capital and maintenance costs, yi is the lifespan of the system, Ean(γ) is the annual energy from the system, COpv is the initial cost of the solar system, and Ypv is the lifespan of the system (Lu et. al 2007). The LCE equation has been stripped down for grid tie PV system. The efficiency of system design is determined by calculating its maximum power point (MPP) (Boztepe et. al 2007). This MPP includes a variety of factors such as the predetermined

3 - 3 - efficiency of the panels, the average sun radiation (insolation) of a given geographical area, panel shading, and other factors such as temperature. The MPP corresponds to a point on a curve with current measured in amperes on the y-axis and voltage measured on the x-axis. The curve forms a horizontal line above the x-axis depending on the voltage and then forms a 90 degree bend downwards at the point of maximum power. The equations used to calculate an MPP is: V / I = dv / di And the total power measured in watts of the system is: P = V / I = dv / di where the voltage divided by the current equals the negative change of the voltage divided by the change in current(boztepe et. al 2007). The maximum power is calculated using standard test conditions (STC), with the temperature at 25º C and irradiance (solar radiation) is 1,000 W/M² (watts per square meter). The MPP equation is a differential equation, where the voltage changes with respect to the current (Olariu et. al 2005). Differential equations are the foundation for most physics and engineering research by describing the change in variables over time or space domains (Olariu et. al 2005). The order of the equation is the order of the highest derivative. The MPP is the simplest form of a differential equation nown as a first order ordinary differential equation (ODE) with only one independent variable (Boztepe et. al 2007). More complex differential equations are nown as partial differential equations (PDE) in that they describe partial changes in more than one independent variable with respect to dependent variables (Olariu et. al 2005). There are two basic methods for solving differential equations, analytically and numerically (Olariu et. al 2005). Solving equations analytically involves setting up a model based on the properties then solving the equation using calculus and algebra. Solving equations numerically also involves setting up a model, but this model involves adding up a series of

4 - 4 - numerical equations based on the original. Numerical methods are very effective and can solve equations with the help of computers that analytic methods cannot (Olariu et. al 2005). One popular numerical method for solving a first order differential equation is the Fourth Order Runge Kutta Method (RK4) (Hood, 2009). The RK4 method uses a Taylor series to sum up four different numerical values of the equation. A Taylor series is an algebraic method that incrementally sums numerical functions to approximate the total function (Hood, 2009). The RK4 equations are 1 = ( x y ) hf i, i ( x + h 2, y / 2) 2 = hf i / i + 1 ( x + h 2, y / 2) 3 = hf i / i + 2 ( x + h y ) 4 = hf i, i + 3 Where the values are the terms of the equations, the h values are the series increments, the x values are the dependent variables, the y values are the independent variables, and i is the iteration number or how many trials are performed (Olariu et. al 2005). The solution to the RK4 equations is y ( ) i + 1 = yi + / 6 1, By inserting the MPP equation into RK4 with V = y and I = x they become along with the solution 1 y ( dv di ) = h / i i ( d( y + 1 / 2)/ d( x / 2) ) 2 = h i i + h ( d y + / 2) / d( x / 2) ) 3 = h ( i 2 i + h ( d( y + 3 ) / d( x )) 4 = h i i + h ( ) i + 1 = yi + / 6 1, (Olariu et. al 2005).

5 - 5 - These modified RK4 equations are translated into VBA and used to build a macro to solve the MPP equation and graph it on a curve. This program is based on the research done by (Hood, 2009) using VBA for solving RK4 equations. The actual VBA code is based on a program written by Bourg and modified for the MPP equations (Bourg, 2006). The initial V and I values and the h value will be entered into designated cells on the spreadsheet that the program will used to run the calculations (Bourg, 2006). Another RK4 series will also be developed in the C++.NET language. This is a powerful and effective language for building mathematical and scientific simulation models (Olariu et. al 2005). The C++.NET platform runs within the Microsoft Studio development environment that be downloaded and used by any user with a current Microsoft Office license (Olariu et. al 2005). The VBA macros will be activated by the user pressing a button for each on the GUI. The levelized cost of energy and maximum power curve will then be calculated. There is a disclaimer on the GUI These costs are calculated based on experimental data and are used for simulation purposes only (Liu, 2011). The actual costs may vary and further testing and research will need to be performed in order to obtain more accurate data. Metamaterial solar cell design and manufacturing is still in the theoretical stage. The design program GUI, VBA code, Excel formulas, XHTML/Javascript for web site, as well as the Power Point presentation are listed in the appendices.

6 - 6 - References Barth, M., Fay, A., Greifeneder, J., Strube, M., & Weber, P.(November 5, 2009). Object oriented engineering data exchange as a base for automatic generation of simulation models. Industrial Electronics, doi: /IECON Bernal-Agustín, J., Contreras, J.& Dufo-López, R. (2007). Program of control strategies for stand-alone renewable energy systems with hydrogen storage. Renewable Energy, 32(7). p doi: /j.renene Bourg, D. (January 17, 2006).Excel scientific and engineering cooboo. O'Reilly Media, Inc. Print ISBN-13: Boztepe, M., Çola, M., Hiyama, T. & Karatepe, E. (November 4-8, 2007). Power controller design for photovoltaic generation system under partially shaded insolation conditions. The 14 th International Conference on Intelligent System Application to Power Systems, ISAP Retrieved January 03, 2010 from Hood, D. (October, 2009).Numerical solution of ordinary differential equation using an MS Excel spreadsheet. MSOR Connections, 9(3). Retrieved from Leonhardt,U.& Philbin, T. (June 07, 2008). Transformation optics and the geometry of arxiv: v2 light. Liu, Y.(May, 2011). Solar cell design using metamaterials. (Masters Thesis). Available from ProQuest (ID ) Lu, L., Yang, H., & Zhou, W. (2007). A novel optimization sizing program for hybrid solarwind power generation system. Solar Energy 81. p doi: /j.solener Richardson, I. & Thomson, M. (April 04, 2011). Integrated simulation of photovoltaic micro generation and domestic electricity demand: A one-minute resolution open source model. In: Microgen II. 2nd International Conference On Microgeneration And Related Technologies, Glasgow. Retrieved from Olariu, S., Salleh, S., Sanugi, B. & Zomaya, A. (2005). Numerical simulations and case studies using Visual C++.NET. John Wiley & Sons, Inc. ISBN:

Stand Alone PV System Sizing Worksheet (example)

Stand Alone PV System Sizing Worksheet (example) Stand Alone PV System Sizing Worksheet (example) Application: Stand alone camp system 7 miles off grid Location: Baton Rouge, La Latitude: 31.53 N A. Loads A1 Inverter efficiency 85 A2 Battery Bus voltage

More information

Renewable Energy. Solar Power. Courseware Sample 86352-F0

Renewable Energy. Solar Power. Courseware Sample 86352-F0 Renewable Energy Solar Power Courseware Sample 86352-F0 A RENEWABLE ENERGY SOLAR POWER Courseware Sample by the staff of Lab-Volt Ltd. Copyright 2009 Lab-Volt Ltd. All rights reserved. No part of this

More information

Application Note - How to Design a SolarEdge System Using PVsyst

Application Note - How to Design a SolarEdge System Using PVsyst March 2015 Application Note - How to Design a SolarEdge System Using PVsyst As of version 5.20, PVsyst - the PV system design software - supports the design of SolarEdge systems. This application note

More information

Implementation of the Movable Photovoltaic Array to Increase Output Power of the Solar Cells

Implementation of the Movable Photovoltaic Array to Increase Output Power of the Solar Cells Implementation of the Movable Photovoltaic Array to Increase Output Power of the Solar Cells Hassan Moghbelli *, Robert Vartanian ** * Texas A&M University, Dept. of Mathematics **Iranian Solar Energy

More information

Yield Reduction due to Shading:

Yield Reduction due to Shading: 1x4 1x16 10 x CBC Energy A/S x Danfoss Solar Inverters CBC-40W Poly 40 W TLX 1,5k 5 ; 1x11 3x4 0 1,5kW 1536 x CBC Energy A/S 1 x Power-One CBC-40W Poly 40 W TRIO-7,6-TL-OUTD 30 ; 4x14 0 7,6kW Location:

More information

http://school-maths.com Gerrit Stols

http://school-maths.com Gerrit Stols For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It

More information

Power (kw) vs Time (hours)

Power (kw) vs Time (hours) Solar Panels, Energy and Area Under the Curve Victor J. Donnay, Bryn Mawr College Power (kw) vs Time (hours) 3.0 2.5 Power (kw) 2.0 1.5 1.0 0.5 0.0 5 7 9 11 13 15 17 19 Time (hours) Figure 1. The power

More information

GUIDE TO NET ENERGY METERING. www.heco.com

GUIDE TO NET ENERGY METERING. www.heco.com GUIDE TO NET ENERGY METERING www.heco.com Welcome to Net Energy Metering As a Net Energy Metering (NEM) customer, you are helping Hawaii reach its clean energy goals. Your photovoltaic (PV) system should

More information

Key words: Photovoltaic modules, insolation, charge controller, system sizing, continuous wattage, surge wattage.

Key words: Photovoltaic modules, insolation, charge controller, system sizing, continuous wattage, surge wattage. DESIGN OF PV SOLAR HOME SYSTEM FOR USE IN URBAN ZIMBABWE J Gwamuri *1, S Mhlanga 1 Applied Physics and Radiography Department, Faculty of Applied Sciences, National University of Science and Technology,

More information

Solar Matters III Teacher Page

Solar Matters III Teacher Page Solar Matters III Teacher Page Solar Powered System - 2 Student Objective Given a photovoltaic system will be able to name the component parts and describe their function in the PV system. will be able

More information

SOLAR COOLING WITH ICE STORAGE

SOLAR COOLING WITH ICE STORAGE SOLAR COOLING WITH ICE STORAGE Beth Magerman Patrick Phelan Arizona State University 95 N. College Ave Tempe, Arizona, 8581 bmagerma@asu.edu phelan@asu.edu ABSTRACT An investigation is undertaken of a

More information

Arti cial neural Network-Based modeling and monitoring of photovoltaic generator

Arti cial neural Network-Based modeling and monitoring of photovoltaic generator ISSN : 2335-1357 Mediterranean Journal of Modeling and Simulation MJMS 03 (2015) 001-009 M M J S Arti cial neural Network-Based modeling and monitoring of photovoltaic generator H. MEKKI a, A. MELLIT b,

More information

K.Vijaya Bhaskar,Asst. Professor Dept. of Electrical & Electronics Engineering

K.Vijaya Bhaskar,Asst. Professor Dept. of Electrical & Electronics Engineering Incremental Conductance Based Maximum Power Point Tracking (MPPT) for Photovoltaic System M.Lokanadham,PG Student Dept. of Electrical & Electronics Engineering Sri Venkatesa Perumal College of Engg & Tech

More information

Associate Degree of Applied Engineering (Renewable Energy Technologies) OVERVIEW OF SUBJECT REQUIREMENTS

Associate Degree of Applied Engineering (Renewable Energy Technologies) OVERVIEW OF SUBJECT REQUIREMENTS Course Associate Degree of Applied Engineering (Renewable Energy Technologies) Course Number HE20502 Location Newcastle, Ultimo, Mt Druitt OVERVIEW OF SUBJECT REQUIREMENTS Note: This document is intended

More information

How To Use The Csi Ebpp Calculator

How To Use The Csi Ebpp Calculator CSI EPBB Design Factor Calculator User Guide 1. Guide Overview This User Guide is intended to provide background on the California Solar Initiative (CSI) Expected Performance Based Buydown (EPBB) Design

More information

Calibration and Linear Regression Analysis: A Self-Guided Tutorial

Calibration and Linear Regression Analysis: A Self-Guided Tutorial Calibration and Linear Regression Analysis: A Self-Guided Tutorial Part 1 Instrumental Analysis with Excel: The Basics CHM314 Instrumental Analysis Department of Chemistry, University of Toronto Dr. D.

More information

Additional Solar System Information and Resources

Additional Solar System Information and Resources Additional Solar System Information and Resources Background information a. Roughly 400 schools in NJ already have solar systems, producing more than 91 MW, out of approximately 2500 K- 12 schools in NJ.

More information

Interactive simulation of an ash cloud of the volcano Grímsvötn

Interactive simulation of an ash cloud of the volcano Grímsvötn Interactive simulation of an ash cloud of the volcano Grímsvötn 1 MATHEMATICAL BACKGROUND Simulating flows in the atmosphere, being part of CFD, is on of the research areas considered in the working group

More information

Optimum Solar Orientation: Miami, Florida

Optimum Solar Orientation: Miami, Florida Optimum Solar Orientation: Miami, Florida The orientation of architecture in relation to the sun is likely the most significant connection that we can make to place in regards to energy efficiency. In

More information

Impact of Reflectors on Solar Energy Systems

Impact of Reflectors on Solar Energy Systems Impact of Reflectors on Solar Energy Systems J. Rizk, and M. H. Nagrial Abstract The paper aims to show that implementing different types of reflectors in solar energy systems, will dramatically improve

More information

Gross/Active PV Surface Area: 13.094,40 / 13.086,29 m². Energy Produced by PV Array (AC):

Gross/Active PV Surface Area: 13.094,40 / 13.086,29 m². Energy Produced by PV Array (AC): 1x17 1x17 1x 8 x Trina Solar Trina TSM-PC5A 6 6 W 5 ; x Danfoss Solar Inverters TLX 1,5k 1,5kW Location: Arrondissement d'issoire Climate Data Record: Arrondissement d'issoire PV Output:.8, kwp Gross/Active

More information

Master of Science Program (M.Sc.) in Renewable Energy Engineering in Qassim University

Master of Science Program (M.Sc.) in Renewable Energy Engineering in Qassim University Master of Science Program (M.Sc.) in Renewable Energy Engineering in Qassim University Introduction: The world is facing the reality that the global energy demand is increasing significantly over the coming

More information

EFFICIENT EAST-WEST ORIENTATED PV SYSTEMS WITH ONE MPP TRACKER

EFFICIENT EAST-WEST ORIENTATED PV SYSTEMS WITH ONE MPP TRACKER EFFICIENT EAST-WEST ORIENTATED PV SYSTEMS WITH ONE MPP TRACKER A willingness to install east-west orientated photovoltaic (PV) systems has lacked in the past. Nowadays, however, interest in installing

More information

Training Systems for Renewable Energies. Acquiring Practical Skills and Project-oriented Expertise

Training Systems for Renewable Energies. Acquiring Practical Skills and Project-oriented Expertise Training Systems for Renewable Energies Acquiring Practical Skills and Project-oriented Expertise Qualifications through Quality Inexhaustible, sustainable, real the future is green The move away from

More information

Solar Power at Vernier Software & Technology

Solar Power at Vernier Software & Technology Solar Power at Vernier Software & Technology Having an eco-friendly business is important to Vernier. Towards that end, we have recently completed a two-phase project to add solar panels to our building

More information

A Stable DC Power Supply for Photovoltaic Systems

A Stable DC Power Supply for Photovoltaic Systems Int. J. of Thermal & Environmental Engineering Volume 12, No. 1 (216) 67-71 A Stable DC Power Supply for Photovoltaic Systems Hussain A. Attia*, Beza Negash Getu, and Nasser A. Hamad Department of Electrical,

More information

PV THERMAL SYSTEMS - CAPTURING THE UNTAPPED ENERGY

PV THERMAL SYSTEMS - CAPTURING THE UNTAPPED ENERGY PV THERMAL SYSTEMS - CAPTURING THE UNTAPPED ENERGY John Hollick Conserval Engineering Inc. 200 Wildcat Road Toronto Ontario jhollick@solarwall.com ABSTRACT PV modules generate electricity, but the electrical

More information

Sustainable Design and Energy-Efficient Building Techniques for Existing Housing

Sustainable Design and Energy-Efficient Building Techniques for Existing Housing Sustainable Design and Energy-Efficient Building Techniques for Existing Housing PATH Energy Retrofit Project Henderson, Nevada NREL Research Site, Lebanon NJ Energy Retrofit Goals PROJECT GOALS Identify,

More information

SOFTWARE FOR MONITORING A GRID CONNECTED PHOTOVOLTAIC POWER PLANT

SOFTWARE FOR MONITORING A GRID CONNECTED PHOTOVOLTAIC POWER PLANT Contemporary Materials (Renewable energy sources), II 2 (2011) Page 191 of 203 Professional paper UDK 621.311:004.896 doi:10.5767/anurs.cmat.110202.en.191t SOFTWARE FOR MONITORING A GRID CONNECTED PHOTOVOLTAIC

More information

Solar power Availability of solar energy

Solar power Availability of solar energy Solar Energy Solar Energy is radiant energy produced in the sun as a result of nuclear fusion reactions. It is transmitted to the earth through space by electromagnetic radiation in quanta of energy called

More information

Activity 9: Solar-Electric System PUZZLE

Activity 9: Solar-Electric System PUZZLE Section 4 Activities Activity 9: Solar-Electric System Puzzle ACTIVITY TYPE: Worksheet Overview: Introduces the basic components of the Solar 4R Schools (S4RS) solar-electric system and identifies the

More information

EVALUATING SOLAR ENERGY PLANTS TO SUPPORT INVESTMENT DECISIONS

EVALUATING SOLAR ENERGY PLANTS TO SUPPORT INVESTMENT DECISIONS EVALUATING SOLAR ENERGY PLANTS TO SUPPORT INVESTMENT DECISIONS Author Marie Schnitzer Director of Solar Services Published for AWS Truewind October 2009 Republished for AWS Truepower: AWS Truepower, LLC

More information

Plots, Curve-Fitting, and Data Modeling in Microsoft Excel

Plots, Curve-Fitting, and Data Modeling in Microsoft Excel Plots, Curve-Fitting, and Data Modeling in Microsoft Excel This handout offers some tips on making nice plots of data collected in your lab experiments, as well as instruction on how to use the built-in

More information

REDUCING UNCERTAINTY IN SOLAR ENERGY ESTIMATES

REDUCING UNCERTAINTY IN SOLAR ENERGY ESTIMATES REDUCING UNCERTAINTY IN SOLAR ENERGY ESTIMATES Mitigating Energy Risk through On-Site Monitoring Marie Schnitzer, Vice President of Consulting Services Christopher Thuman, Senior Meteorologist Peter Johnson,

More information

UNDERGRADUATE DEGREE PROGRAMME IN ELECTRICAL ENGINEERING. School of Industrial Engineering, Albacete

UNDERGRADUATE DEGREE PROGRAMME IN ELECTRICAL ENGINEERING. School of Industrial Engineering, Albacete UNDERGRADUATE DEGREE PROGRAMME IN ELECTRICAL ENGINEERING School of Industrial Engineering, Albacete Higher Technical School of Industrial Engineering, Ciudad Real Polytechnic University School, Almadén

More information

Performance ratio. Contents. Quality factor for the PV plant

Performance ratio. Contents. Quality factor for the PV plant Performance ratio Quality factor for the PV plant Contents The performance ratio is one of the most important variables for evaluating the efficiency of a PV plant. Specifically, the performance ratio

More information

SOLAR ENERGY: SOLUTION TO FUEL DILEMMA

SOLAR ENERGY: SOLUTION TO FUEL DILEMMA IMPACT: International Journal of Research in Engineering & Technology (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vol. 2, Issue 8, Aug 2014, 99-108 Impact Journals SOLAR ENERGY: SOLUTION TO

More information

Automatically created Edit using CAD tools Export to DWG

Automatically created Edit using CAD tools Export to DWG Photovoltaic design software BlueSol is a software for the design of photovoltaic systems in every country in the world. It allows you to perform the entire process of designing a PV system, from the preliminary

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

Understanding Solar Energy Teacher Page

Understanding Solar Energy Teacher Page Understanding Solar Energy Teacher Page Solar Powered System Student Objective The student understands that light energy from the sun can be turned into electricity with a photovoltaic (solar) cell knows

More information

ACTIVITY 6: Series and Parallel Wiring

ACTIVITY 6: Series and Parallel Wiring Section 2 Activities Activity 6: Series and Parallel Wiring ACTIVITY TYPE: Worksheet Overview: Students understand the effects of building electrical circuits to increase voltage and amperage. Goal: Students

More information

CCTech TM. ICEM-CFD & FLUENT Software Training. Course Brochure. Simulation is The Future

CCTech TM. ICEM-CFD & FLUENT Software Training. Course Brochure. Simulation is The Future . CCTech TM Simulation is The Future ICEM-CFD & FLUENT Software Training Course Brochure About. CCTech Established in 2006 by alumni of IIT Bombay. Our motive is to establish a knowledge centric organization

More information

Performance Assessment of 100 kw Solar Power Plant Installed at Mar Baselios College of Engineering and Technology

Performance Assessment of 100 kw Solar Power Plant Installed at Mar Baselios College of Engineering and Technology Performance Assessment of 100 kw Solar Power Plant Installed at Mar Baselios College of Engineering and Technology Prakash Thomas Francis, Aida Anna Oommen, Abhijith A.A, Ruby Rajan and Varun S. Muraleedharan

More information

CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER

CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER International Journal of Advancements in Research & Technology, Volume 1, Issue2, July-2012 1 CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER ABSTRACT (1) Mr. Mainak Bhaumik M.E. (Thermal Engg.)

More information

Poznan University of Technology Faculty of Electrical Engineering

Poznan University of Technology Faculty of Electrical Engineering Poznan University of Technology Faculty of Electrical Engineering Contact Person: Pawel Kolwicz Vice-Dean Faculty of Electrical Engineering pawel.kolwicz@put.poznan.pl List of Modules Academic Year: 2015/16

More information

System Modelling and Online Optimal Management of MicroGrid with Battery Storage

System Modelling and Online Optimal Management of MicroGrid with Battery Storage 1 System Modelling and Online Optimal Management of MicroGrid with Battery Storage Faisal A. Mohamed, Heikki N. Koivo Control Engineering Lab, Helsinki University of Technology, P.O. Box 5500, FIN-0015

More information

What are the place values to the left of the decimal point and their associated powers of ten?

What are the place values to the left of the decimal point and their associated powers of ten? The verbal answers to all of the following questions should be memorized before completion of algebra. Answers that are not memorized will hinder your ability to succeed in geometry and algebra. (Everything

More information

The Basics of Solar Power for Producing Electricity An excellent place to start for those just beginning. The basics of solar power: 1000 W/m²

The Basics of Solar Power for Producing Electricity An excellent place to start for those just beginning. The basics of solar power: 1000 W/m² The Basics of Solar Power for Producing Electricity Learn the essential basics of using solar power so you can understand your project. Planning your project begins with understanding the basics found

More information

Application Note: String sizing Conext CL Series

Application Note: String sizing Conext CL Series : String sizing Conext CL Series 965-0066-01-01 Rev A DANGER RISK OF FIRE, ELECTRIC SHOCK, EXPLOSION, AND ARC FLASH This Application Note is in addition to, and incorporates by reference, the installation

More information

Advancement in Solar Panels and Improvement in Power Production with Indoor Application

Advancement in Solar Panels and Improvement in Power Production with Indoor Application Advancement in Solar Panels and Improvement in Power Production with Indoor Application C.Hemalatha 1, A.Archana 2, B.Jayaprakash 2, Parvathi Jayakrishnan 2 Assistant Professor, Dept. of EEE, Gnanamani

More information

Rooftop Solar Potential

Rooftop Solar Potential Rooftop Solar Potential Distributed Solar Power in NW Massoud Jourabchi June 2013 1 Renewables made up 9% of National Energy Consumption in 2011 2 1 National Shipment of PV increasing 300,000 Nationwide

More information

Development of a software solution for solar-pv power systems sizing and monitoring

Development of a software solution for solar-pv power systems sizing and monitoring Development of a software solution for solar-pv power systems sizing and monitoring I.A. Odigwe*, C.I. Nnadi*, A.F. Agbetuyi*, A.A. Awelewa*, F.E. Idachaba* *Department of Electrical and Information Engineering,

More information

Core Curriculum to the Course:

Core Curriculum to the Course: Core Curriculum to the Course: Environmental Science Law Economy for Engineering Accounting for Engineering Production System Planning and Analysis Electric Circuits Logic Circuits Methods for Electric

More information

Maximum Power from a Solar Panel

Maximum Power from a Solar Panel Undergraduate Journal of Mathematical Modeling: One + Two Volume 3 2010 Fall Issue 1 Article 10 Maximum Power from a Solar Panel Michael Miller University of South Florida Advisors: Gerald Hefley, Mathematics

More information

Lab 10. Solar and Wind Power

Lab 10. Solar and Wind Power 1 Name Lab 10. Solar and Wind Power INTRODUCTION Sunlight can be used to create heat or generate electrical power. This is referred to as solar energy. It is a clean form of energy production, which doesn't

More information

Design of a Photovoltaic Data Monitoring System and Performance Analysis of the 56 kw the Murdoch University Library Photovoltaic System

Design of a Photovoltaic Data Monitoring System and Performance Analysis of the 56 kw the Murdoch University Library Photovoltaic System School of Engineering and Information Technology ENG460 Engineering Thesis Design of a Photovoltaic Data Monitoring System and Performance Analysis of the 56 kw the Murdoch University Library Photovoltaic

More information

SOLAR RADIATION AND YIELD. Alessandro Massi Pavan

SOLAR RADIATION AND YIELD. Alessandro Massi Pavan SOLAR RADIATION AND YIELD Alessandro Massi Pavan Sesto Val Pusteria June 22 nd 26 th, 2015 DEFINITIONS Solar radiation: general meaning Irradiation [Wh/m 2 ]: energy received per unit area Irradiance [W/m

More information

Running on Renewables (Lesson Plan) (Utilizing HOMER: Modeling Software for Hybrid Electric Power Systems)

Running on Renewables (Lesson Plan) (Utilizing HOMER: Modeling Software for Hybrid Electric Power Systems) Running on Renewables (Lesson Plan) (Utilizing HOMER: Modeling Software for Hybrid Electric Power Systems) Suggested Grade Level 9-12 Overview Students utilize software developed by the National Renewable

More information

PHOTOVOLTAIC SYSTEMS. Alessandro Massi Pavan

PHOTOVOLTAIC SYSTEMS. Alessandro Massi Pavan PHOTOVOLTAIC SYSTEMS Alessandro Massi Pavan Sesto Val Pusteria June 22 nd 26 th, 2015 GRID-CONNECTED PV PLANTS DISTRIBUTED TIPO DISTRIBUITO PV GENERATOR LOCAL LOADS INVERTER GRID CENTRALIZED PV GENERATOR

More information

GeoGebra. 10 lessons. Gerrit Stols

GeoGebra. 10 lessons. Gerrit Stols GeoGebra in 10 lessons Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It was developed by Markus Hohenwarter

More information

Using the sun to generate electricity

Using the sun to generate electricity Using the sun to generate electricity Image source: http://www.globalsolarcenter.com/files/2009/04/commercial-solar.jpg Solar panels information sheet What are the benefits? How does it work? What is the

More information

Solar Power Analysis Based On Light Intensity

Solar Power Analysis Based On Light Intensity The International Journal Of Engineering And Science (IJES) ISSN (e): 2319 1813 ISSN (p): 2319 1805 Pages 01-05 2014 Solar Power Analysis Based On Light Intensity 1 Dr. M.Narendra Kumar, 2 Dr. H.S. Saini,

More information

What is Solar? The word solar is derived from the Latin word sol (the sun, the Roman sun god) and refers to things and methods that relate to the sun.

What is Solar? The word solar is derived from the Latin word sol (the sun, the Roman sun god) and refers to things and methods that relate to the sun. What is Solar? The word solar is derived from the Latin word sol (the sun, the Roman sun god) and refers to things and methods that relate to the sun. What is the solar industry? The solar industry is

More information

Solar Tracking Application

Solar Tracking Application Solar Tracking Application A Rockwell Automation White Paper Solar trackers are devices used to orient photovoltaic panels, reflectors, lenses or other optical devices toward the sun. Since the sun s position

More information

2 Absorbing Solar Energy

2 Absorbing Solar Energy 2 Absorbing Solar Energy 2.1 Air Mass and the Solar Spectrum Now that we have introduced the solar cell, it is time to introduce the source of the energy the sun. The sun has many properties that could

More information

COMPUTER SCIENCE. Department of Mathematics & Computer Science

COMPUTER SCIENCE. Department of Mathematics & Computer Science Department of Mathematics & Computer Science COMPUTER SCIENCE This document is meant as a planning guide only. Students are advised to consult with the Chair of the Department if they have specific questions

More information

Solar Energy. Outline. Solar radiation. What is light?-- Electromagnetic Radiation. Light - Electromagnetic wave spectrum. Electromagnetic Radiation

Solar Energy. Outline. Solar radiation. What is light?-- Electromagnetic Radiation. Light - Electromagnetic wave spectrum. Electromagnetic Radiation Outline MAE 493R/593V- Renewable Energy Devices Solar Energy Electromagnetic wave Solar spectrum Solar global radiation Solar thermal energy Solar thermal collectors Solar thermal power plants Photovoltaics

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

Graphing Parabolas With Microsoft Excel

Graphing Parabolas With Microsoft Excel Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.

More information

Application for Purchased Systems Oregon Department of Energy

Application for Purchased Systems Oregon Department of Energy Application Form for Residential Energy Tax Credit Certification Instructions Solar Electric System (Photovoltaic) Application for Purchased Systems Oregon Department of Energy ELIGIBILITY To qualify for

More information

RENEWABLE ENERGY INVESTMENTS

RENEWABLE ENERGY INVESTMENTS RENEWABLE ENERGY INVESTMENTS FREQUENTLY ASKED QUESTIONS SOLAR PV What are photovoltaics (PV)? First used in about 1890, the word photovoltaic has two parts; photo derived from the Greek for light, and

More information

Design and Development of a Remote Monitoring and Maintenance of Solar Plant Supervisory System

Design and Development of a Remote Monitoring and Maintenance of Solar Plant Supervisory System International Journal of Research Studies in Science, Engineering and Technology [IJRSSET] Volume 1, Issue 4, July 2014, PP 57-61 ISSN 2349-4751 (Print) & ISSN 2349-476X (Online) Design and Development

More information

SolarEdge Monitoring Portal. User Guide 1.1. Table of Contents

SolarEdge Monitoring Portal. User Guide 1.1. Table of Contents Table of Contents Table of Contents... 2 About This Guide... 3 Support and Contact Information... 4 Chapter 1 - Introducing the SolarEdge Monitoring Portal... 5 Chapter 2 - Using the SolarEdge Monitoring

More information

Virtual Laboratory for Study of Renewable Solar Energy

Virtual Laboratory for Study of Renewable Solar Energy 266 Virtual Laboratory for Study of Renewable Solar Energy Cristian Dragoş DUMITRU, Adrian GLIGOR and Alexandru MORAR Abstract: The study of renewable energy sources is a new and interesting discipline

More information

VGB Congress Power Plants 2001 Brussels October 10 to 12, 2001. Solar Power Photovoltaics or Solar Thermal Power Plants?

VGB Congress Power Plants 2001 Brussels October 10 to 12, 2001. Solar Power Photovoltaics or Solar Thermal Power Plants? VGB Congress Power Plants 2001 Brussels October 10 to 12, 2001 Solar Power Photovoltaics or Solar Thermal Power Plants? Volker Quaschning 1), Manuel Blanco Muriel 2) 1) DLR, Plataforma Solar de Almería,

More information

Solar Energy Systems. Matt Aldeman Senior Energy Analyst Center for Renewable Energy Illinois State University

Solar Energy Systems. Matt Aldeman Senior Energy Analyst Center for Renewable Energy Illinois State University Solar Energy Solar Energy Systems Matt Aldeman Senior Energy Analyst Center for Renewable Energy Illinois State University 1 SOLAR ENERGY OVERVIEW 1) Types of Solar Power Plants 2) Describing the Solar

More information

Solar Energy Discovery Lab

Solar Energy Discovery Lab Solar Energy Discovery Lab Objective Set up circuits with solar cells in series and parallel and analyze the resulting characteristics. Introduction A photovoltaic solar cell converts radiant (solar) energy

More information

MONITORING SCHOOL ENERGY CONSUMPTION

MONITORING SCHOOL ENERGY CONSUMPTION MONITORING SCHOOL ENERGY CONSUMPTION Goal(s): The mains goal of the energy monitoring activity are: To make the pupils and all school staff aware of school energy consumption; and To show how changes in

More information

PentaMetric battery Monitor System Sentry data logging

PentaMetric battery Monitor System Sentry data logging PentaMetric battery Monitor System Sentry data logging How to graph and analyze renewable energy system performance using the PentaMetric data logging function. Bogart Engineering Revised August 10, 2009:

More information

AP1 Oscillations. 1. Which of the following statements about a spring-block oscillator in simple harmonic motion about its equilibrium point is false?

AP1 Oscillations. 1. Which of the following statements about a spring-block oscillator in simple harmonic motion about its equilibrium point is false? 1. Which of the following statements about a spring-block oscillator in simple harmonic motion about its equilibrium point is false? (A) The displacement is directly related to the acceleration. (B) The

More information

Auburn University s Solar Photovoltaic Array Tilt Angle and Tracking Performance Experiment

Auburn University s Solar Photovoltaic Array Tilt Angle and Tracking Performance Experiment Auburn University s Solar Photovoltaic Array Tilt Angle and Tracking Performance Experiment Julie A. Rodiek 1, Steve R. Best 2, and Casey Still 3 Space Research Institute, Auburn University, AL, 36849,

More information

The Development of the Monitoring Software for the Mobile Weather Station

The Development of the Monitoring Software for the Mobile Weather Station The Development of the Monitoring Software for the Mobile Weather Station Napat Watjanatepin and Pakorn Somboonkij Abstract The objective of this research is to develop the high performance monitoring

More information

Software Development for Cooling Load Estimation by CLTD Method

Software Development for Cooling Load Estimation by CLTD Method IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) ISSN: 2278-1684Volume 3, Issue 6 (Nov. - Dec. 2012), PP 01-06 Software Development for Cooling Load Estimation by CLTD Method Tousif Ahmed Department

More information

DC-DC high gain converter applied to renewable energy with new proposed to MPPT search

DC-DC high gain converter applied to renewable energy with new proposed to MPPT search European Association for the Development of Renewable Energies, Environment and Power Quality (EA4EPQ) International Conference on Renewable Energies and Power Quality (ICREPQ 12) Santiago de Compostela

More information

Solar for Homeowners. Bear Valley Solar Initiative (BVSI) Laura Williams, Project Manager. February, 11 2015

Solar for Homeowners. Bear Valley Solar Initiative (BVSI) Laura Williams, Project Manager. February, 11 2015 Solar for Homeowners Bear Valley Solar Initiative (BVSI) February, 11 2015 Laura Williams, Project Manager Our Mission: Accelerate the transition to a sustainable world powered by clean energy CSE Disclaimer

More information

Empowering. Solar Energy Savings that Benefit Students, Teachers and the Community

Empowering. Solar Energy Savings that Benefit Students, Teachers and the Community Empowering Solar Energy Savings that Benefit Students, Teachers and the Community Your Presenter Matt Shannon, VP Sales & Marketing Natural Power and Energy Over a thirteen year career in the Arizona solar

More information

Hybrid Systems Specialisation Syllabus

Hybrid Systems Specialisation Syllabus Hybrid Systems Specialisation Syllabus Contents: 1. Basics of electric power systems 2. Energy generation in isolated systems 3. Electric power systems 4. Economics and socio-economics -----------------------------------------------------------------------------------------------

More information

Chapter 6. Sustainability and Renewable Energy

Chapter 6. Sustainability and Renewable Energy Chapter 6 Sustainability and Renewable Energy 1 CHAPTER 6. SUSTAINABILITY AND RENEWABLE ENERGY 6.1 Introduction The Sustainability and Renewable Energy field addresses global technological challenges balancing

More information

A SOLAR GUIDE - EVERYTHING YOU NEED TO KNOW

A SOLAR GUIDE - EVERYTHING YOU NEED TO KNOW WE BRING GREEN SOLUTIONS TO YOU A SOLAR GUIDE - EVERYTHING YOU NEED TO KNOW Provided by A COOLER PLANET A Cooler Planet 1 The Complete Solar Guide WHY GO SOLAR? TOP FIVE FACTORS TO CONSIDER FOR ADDING

More information

Oregon Department of Energy

Oregon Department of Energy Application Form for Residential Energy Tax Credit Certification Instructions Solar Electric System (Photovoltaic) Oregon Department of Energy ELIGIBILITY To qualify for a tax credit, you must have an

More information

Microsoft Excel. Qi Wei

Microsoft Excel. Qi Wei Microsoft Excel Qi Wei Excel (Microsoft Office Excel) is a spreadsheet application written and distributed by Microsoft for Microsoft Windows and Mac OS X. It features calculation, graphing tools, pivot

More information

SOLAR PV INFORMATION. January, 2015

SOLAR PV INFORMATION. January, 2015 January, 2015 SOLAR PV INFORMATION Thank you for the opportunity to present you with information about Solar Photovoltaic (PV) Energy Systems in the East Texas area. This document will give you a brief

More information

Making the most of free electricity from your solar panels

Making the most of free electricity from your solar panels Making the most of free electricity from your solar panels A guide to your Solar Photovoltaic (PV) system Delivering Sustainable Energy Solutions www.wolverhamptonhomes.org.uk WHAM4001 05/13 2 Cut your

More information

Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard

Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard Academic Content Standards Grade Eight and Grade Nine Ohio Algebra 1 2008 Grade Eight STANDARDS Number, Number Sense and Operations Standard Number and Number Systems 1. Use scientific notation to express

More information

A Novel Method for Predicting the Power Output of Distributed Renewable Energy Resources

A Novel Method for Predicting the Power Output of Distributed Renewable Energy Resources A Novel Method for Predicting the Power Output of Distributed Renewable Energy Resources Aris-Athanasios Panagopoulos1 Joint work with Georgios Chalkiadakis2 and Eftichios Koutroulis2 ( Predicting the

More information

Get Renewable! Tampa, FL 33620. University of South Florida Board of Directors 4202 E. Fowler Ave. Tampa, FL 33620. Directors,

Get Renewable! Tampa, FL 33620. University of South Florida Board of Directors 4202 E. Fowler Ave. Tampa, FL 33620. Directors, 1 Get Renewable! Tampa, FL 33620 University of South Florida Board of Directors 4202 E. Fowler Ave. Tampa, FL 33620 Directors, I write to you on behalf of Get Renewable!, a green energy consulting firm

More information

Getting Started with Web Service Tools for Whole Building Analysis

Getting Started with Web Service Tools for Whole Building Analysis Autodesk Ecotect Analysis 2010 Getting Started with Web Service Tools for Whole Building Analysis Customers who add subscription to their Autodesk Ecotect Analysis license can access 1 whole building energy,

More information

A system of direct radiation forecasting based on numerical weather predictions, satellite image and machine learning.

A system of direct radiation forecasting based on numerical weather predictions, satellite image and machine learning. A system of direct radiation forecasting based on numerical weather predictions, satellite image and machine learning. 31st Annual International Symposium on Forecasting Lourdes Ramírez Santigosa Martín

More information

Masters of Science Program in Environmental and Renewable Energy Engineering

Masters of Science Program in Environmental and Renewable Energy Engineering Masters of Science Program in Environmental and Renewable Energy Engineering Courses Description ERE 721 Applied Mathematics for Engineers, 3 Crs. Vector differential operators, computing multiple integrals

More information

Rainwater Harvesting

Rainwater Harvesting Rainwater Harvesting With climate change now a reality rather than a speculated possibility, the demand on water resources has gone up, whilst the amount of water available for supply has gone down. Forth

More information