WELCOME TO THE SWRE. Software for Renewable Energy - Bay Area. 23Feb12 Meetup: Intro to SWRE

Size: px
Start display at page:

Download "WELCOME TO THE SWRE. Software for Renewable Energy - Bay Area. 23Feb12 Meetup: Intro to SWRE"

Transcription

1 WELCOME TO THE SWRE Software for Renewable Energy - Bay Area 23Feb12 Meetup: Intro to SWRE 1

2 AGENDA 7:00 to 7:20 - snack-up and socialize 7:20 to 8:00 - presentation 8:00 to 8:30 - follow-up discussion 8:30 to 9:00 - grab another drink and continue getting to know your brethren 2

3 GROUND RULES Eat and drink throughout Interrupt me at any time Share your experiences and opinions and details of your favorite projects (past and present) Stay around and chat after the presentation 3

4 WHO ARE WE? Software (SW) professionals/amateurs/hobbyists Renewable Energy (RE) industry observers/professionals/fanboys people who passionately care about the impact of RE on our lives, the planet, the other 7 billion people we live with people who want to use their skills and experience in an industry that really matters no offense... but do we really need another mobile ad-driven geo-aware nano coupon-clipping synergy farmville social gaming app or do we need to do our part to make RE make financial sense for everyone in the world? 4

5 OUR GOALS! Make RE a sexy industry for SW professionals (or even just the Energy Industry, in general) Why doesn t one of the worlds largest, most profitable 1, most dynamic, most complicated industries get more love? We are a group of people who passionately care about our SW projects and also RE s place in the future Yet, I feel like we meet and cross-pollinate less than SW professionals in other industries There are web 2.0 hack-a-thons nearly every week here in the Bay area. When was the last time you heard about an energy 2.0 hack-athon? 1: 5

6 !OUR GOALS Religious debates (too many other meetup groups devolve into these dogmatic arguments): Python vs. Perl; Windows vs. Linux; Django vs. RoR; compiled vs. interpreted; simple scripts vs. full-on OOP; Emacs vs. vi; git vs. SVN Further, we don t want to crown one RE sub industry (solar, wind, hydro, bio fuels, etc.) as king... all need to grow and all need more skilled SW experts to do so 6

7 WHO AM I? I m Dave I studied CompEng and CS I started a company called Elevated Systems which currently does some SW consulting I ve spent about 6 years playing with RE almost all in or around the solar industry... I will always be skewed towards solar I ve spent about 3 years playing with Intelligent Transportation Systems (ITS) vehicle-to-vehicle and vehicle-to-infrastructure safety applications I have biases: SW: C++, Python, Django, PyQt, jquery, Linux, Mac RE: Solar, SmartGrid, EVs 7

8 WHO ARE YOU? Name Company (optional) What thrills you the most about SW? RE? What s a recent project you ve worked on that you re excited about? 8

9 WHERE DOES SW LIVE IN RE? Everywhere: controls, factory automation, data management and visualization, system modeling, financial modeling... But I ve got 2 specific examples based on personal experiences: system modeling AND data collection/management/ visualization What are yours? 9

10 EX: SYSTEM MODELING Problem Statement: Simulate the power production of a solar field. mathematically model a solar cell represent all of the attributes: open-circuit voltage (Voc), short-circuit current (Isc), max power (Pmp), series resistance (Rs) build that up into a panel number of cells, optical losses, wiring resistive losses, etc. put panels and combiners and inverters together into a field more losses to model... so much wire simulate the performance of that field throughout the course of the year tweak some variables and repeat (maybe even optimize?!) 10

11 EX: SYSTEM MODELING - BASIC class SiSolarCell(object): Isc_amps = 0.05 Voc_volts = 0.6 R_series_ohms = class Panel(object): cell_array = [SiSolarCell()]*40 optical_loss_percent = 0.95 resistive_loss_percent = 0.95 class Field(object): panel_array = [Panel()]*100 resistive_loss_percent = 0.95 inverter_max_voltage_volts =

12 EX: SYSTEM MODELING - NOW W/ OOP class SiSolarCell(object): Isc_amps = 0.05 Voc_volts = 0.6 R_series_ohms = class SuntechSolarCell(SiSolarCell): Isc_amps = 0.07 class TrinaSolarCell(SiSolarCell): R_series_ohms = class SuntechPanel(Panel): cell_array = [SuntechSolarCell()]*40 class TrinaPanel(Panel): cell_array = [TrinaSolarCell()]*45 class Field(object): panel_array = [SuntechPanel(), TrinaPanel]*100 resistive_loss_percent = 0.95 inverter_max_voltage_volts =

13 EX: SYSTEM MODELING - RECAP What s next? simulate production performance in various weather conditions, mounting strategies, etc. add in financial costs set some hard constraints and some variables (number of panels, number of inverters, etc.) and optimize Who cares? (aka: where to work) System Integration companies Engineering Procurement and Construction (EPC) firms Residential Full Service Providers (like SolarCity) Which tools to use? Python (bias alert!!), Matlab, Excel (with VB) anything with some basic OOP capabilities, GUI construction, and graphing/reporting packages 13

14 EX: DATA MANAGEMENT Problem Statement: Collect and analyze the actual power production of a solar field. collect data from various sources, sensors (ex: irradiance sensors, inverters, tracking sensors) transport that data off-site to some data archive visualize data in some central portal for field owner/operator/stakeholders provide some remote control mechanisms... bring some parts of the field online/offline (maybe through trackers or inverters) alert stakeholders of problems at the field analyze data to spot performance trends over time (weather, soiling, cell degradation) 14

15 EX: DATA MANAGEMENT - COLLECT Start with an embedded PC in the field or just an embedded micro controller (PIC, Atmel/Arduino) Interface with sensors using some common industrial protocols (RS232, RS485, MODBUS, CAN, analog voltages) irradiance sensors and weather stations inverters Write an program to periodically collect all data Automatically respond to certain field conditions ex: high-wind stow Skills needed: embedded systems programming, communications protocols knowledge, maybe even some circuit design 15

16 EX: DATA MANAGEMENT - TRANSPORT Start with a connection to the internet maybe we need cellular or satellite service (M2M) Package up collected data (XML, JSON, etc.) Setup an encrypted channel to DB (SSH, VPN, SSL, etc.) Push to DB server use raw SQL transactions, RPCs, or maybe a modern REST interface Skills needed: networking knowledge, data compression and security knowledge, DB knowledge 16

17 EX: DATA MANAGEMENT - ANALYZE Build a GUI application or web application to access the DB and visualize collected data Take the next step to help the user see trends in their data more clearly using data mining and analysis techniques Skills needed: GUI programming, basic data analysis, web application development (front-end and back-end: HTML, CSS, JS, PHP, RoR, Django,.NET, Java, web operations, etc.) 17

18 EX: DATA MANAGEMENT - RECAP What s next? make the data accessible on a mobile application use data trends to drive engineering decisions (long term soiling has much greater production impacts on module X than Z) Who cares? (aka: where to work) field owners and financial stakeholders field installers RE data aggregators (FatSpaniel/PowerOne, Draker Labs, ArgusOn, etc.) 18

19 NEXT MEETUP IDEAS Not so technical: crash course in policies that matter to SWRE members Federal laws and mandates, CA laws (ex: AB32) meta discussions about RE industry what s the state-of-the-art for various technologies? does renewable == clean? RE growth is driven by finance... why should we care? More technical: fault tolerance and reliability in SW for RE how to build a DB schema for RE data Your ideas will probably be better... 19

20 QUESTIONS 20

Nandha Engineering College (Autonomous) Erode Examination -Sep 2018 Department Wise Time Table

Nandha Engineering College (Autonomous) Erode Examination -Sep 2018 Department Wise Time Table B.E - Computer Science and Engineering F.N: 09.30 AM to 12.30 PM A.N: 01.30 AM to 04.30 PM Date Session Code Subject 14-11-2018 FN 13CSX08 Network Analysis and Management AN 13CSX15 Software Testing Methodologies

More information

Introduction to Computer Science - PLTW #9340

Introduction to Computer Science - PLTW #9340 Introduction to Computer Science - PLTW #9340 Description Designed to be the first computer science course for students who have never programmed before, Introduction to Computer Science (ICS) is an optional

More information

AccuSolar SOLAR POWERED SYSTEM

AccuSolar SOLAR POWERED SYSTEM AccuSolar SOLAR POWERED SYSTEM FLO-CORP s AccuSolar Solar Powered Level Monitoring System monitors process conditions through wireless WiFi that communicate up to 1,500 feet to a base station PC. The Solar

More information

OSMANIA UNIVERSITY No. 33/BE/Exams/TT/ REVISED TIME-TABLE

OSMANIA UNIVERSITY No. 33/BE/Exams/TT/ REVISED TIME-TABLE OSMANIA UNIVERSITY Page No: 6/11 B.E. I/IV (Main&Backlog) EXAMINATIONS: APR/MAY, 2014 Time: 10.00 a.m. to 1.00 p.m. Date Subject 09-06-2014 English 11-06-2014 Mathematics I 13-06-2014 Mathematics II 18-06-2014

More information

OSMANIA UNIVERSITY No.15 /BE/Exams/TT TIME-TABLE

OSMANIA UNIVERSITY No.15 /BE/Exams/TT TIME-TABLE No.15 /BE/Exams/TT2012 05-04-2013 TIME-TABLE B.E. I/IV (REGULAR) (Main) EXAMINATIONS: MAY/JUNE, 2013 Time: 10.00 a.m. to 1.00 p.m. Subject 04-06-2013 11-0-2013 15-06-2013 20-06-2013 24-06-2013 26-06-2013

More information

Ansible Essentials 5 days Hands on

Ansible Essentials 5 days Hands on Ansible Essentials 5 days Hands on Ansible is growing in popularity for good reason, it is both easy to understand, far simpler than Python, and extremely powerful. While Python can be used to do just

More information

JNTUH COLLEGE OF ENGINEERING (Autonomous) EXAMINATIONS BRANCH, HYDERABAD - 85

JNTUH COLLEGE OF ENGINEERING (Autonomous) EXAMINATIONS BRANCH, HYDERABAD - 85 Branch : COMPUTER SCIENCE Passed in Subject: (CS701) ADVANCED PROBLEM SOLVING Passed in Subject: (CS711) ADVANCED DATA STRUCTURES & ALGORITHMS 14011D0518 Passed in Subject: (CS712) ADVANCED DATABASE ENGINEERING

More information

Go-IoT Reference Cases. Modular hardware and software solutions for the next generation of Building Automation

Go-IoT Reference Cases. Modular hardware and software solutions for the next generation of Building Automation Go-IoT Reference Cases Modular hardware and software solutions for the next generation of Building Automation 250+ Installations and Counting Dingo Reference Case 1 G o-iot (formerly Rational Network)

More information

Automate Patching for Oracle Database in your Private Cloud

Automate Patching for Oracle Database in your Private Cloud Automate Patching for Oracle Database in your Private Cloud Who we are Experts At Your Service > Over 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100%

More information

THE NATIONAL INSTITUTE OF ENGINEERING, Mysore UG - Semester End Examination Schedule - December 2014

THE NATIONAL INSTITUTE OF ENGINEERING, Mysore UG - Semester End Examination Schedule - December 2014 5/12/2014 1 1 1 CV0413 Quantity Surveying & Estimation Computer Concept & C Programming CV0418/CV0501 Mechanics of Deformable Bodies CV0419/CV0201 Building Materials & Construction CV0420/CV0402 Mechanics

More information

What is Tableau and Why Should I Care? Karen Rahmeier and Melissa Perry, Codecinella Madison WI, June 26, 2018

What is Tableau and Why Should I Care? Karen Rahmeier and Melissa Perry, Codecinella Madison WI, June 26, 2018 What is Tableau and Why Should I Care? Karen Rahmeier and Melissa Perry, Codecinella Madison WI, June 26, 2018 About me Karen Rahmeier Software developer since 1998 Team Lead of software developers, Wisconsin

More information

THE CONNECTED INFRASTRUCTURE SOLUTION MONITORING HOW STRUCTURES EVOLVE

THE CONNECTED INFRASTRUCTURE SOLUTION MONITORING HOW STRUCTURES EVOLVE THE CONNECTED INFRASTRUCTURE SOLUTION MONITORING HOW STRUCTURES EVOLVE Loadsensing is a data acquisition and monitoring system which combines state-of-the-art wireless monitoring and advanced software

More information

Dr. Vincent Lau

Dr. Vincent Lau Dr. Vincent Lau vincentmklau@astri.org 2015-6-25 Hong Kong Applied Science and Technology Research Institute (ASTRI) Largest HK R&D centre created by HK Government 500+ staffs with 30% Ph.D., 50% Master

More information

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting.

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Dream Report for DGH Modules Dream Report Product Overview Applications Compliance Performance

More information

Bringing the revolution to SMEs. Report for stakeholders August 2018

Bringing the revolution to SMEs. Report for stakeholders August 2018 Bringing the revolution to SMEs Report for stakeholders August 2018 Executive Summary 4Manufacturing is the Knowledge Transfer Network (KTN) s approach to helping manufacturers, particularly SMEs, understand

More information

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Dream Report Product Overview Applications Compliance Performance Quality Corporate Dashboards

More information

10-Year Technology Trends

10-Year Technology Trends SESSION 4 10-Year Technology Trends Keynote/Moderator Carole Barbeau President - Energy Advisory Americas DNV GL Ben Bixby General Manager & Director of Energy Products, Nest Joe Jankosky Director for

More information

ESA Supporting Ontario s Electrical Safety System

ESA Supporting Ontario s Electrical Safety System ESA Supporting Ontario s Electrical Safety System Safety Meeting Presentation ESA Supporting Ontario s Form 1710 (01/12) Discussion Topics This presentation will increase participant awareness of: The

More information

Embedded Generation Connection Application Form

Embedded Generation Connection Application Form Embedded Generation Connection Application Form This Application Form provides information required for an initial assessment of the Embedded Generation project. All applicable sections must be completed

More information

Agile Oracle BI Development for Multiple Users with Git. Yes, it can be done

Agile Oracle BI Development for Multiple Users with Git. Yes, it can be done 1 Agile Oracle BI Development for Multiple Users with Git Yes, it can be done Harvard University Founded 1636 20,000 active students 7,500 degrees awarded/year 2,475 faculty 18,000 total employees Eric

More information

Photovoltaic testing for R&D, DV, and manufacturing

Photovoltaic testing for R&D, DV, and manufacturing Photovoltaic testing for R&D, DV, and manufacturing Neil Forcier Application Engineer Agilent Technologies Jim Freese President Freese Enterprises Inc. www.agilent.com/find/solarcell Page 1 Agenda Introduction

More information

Rick Clemmer Media briefing in China. Rick Clemmer, President & CEO NXP Semiconductors March 19, 2012 Shanghai

Rick Clemmer Media briefing in China. Rick Clemmer, President & CEO NXP Semiconductors March 19, 2012 Shanghai Rick Clemmer Media briefing in China Rick Clemmer, President & CEO NXP Semiconductors March 19, 2012 Shanghai Today s agenda NXP update Share our vision Zoom in China 2 NXP Semiconductors NXP Semiconductors

More information

Introducing the Solmetric PV Analyzer and the New Features of v2.0 PVA Software

Introducing the Solmetric PV Analyzer and the New Features of v2.0 PVA Software Introducing the Solmetric PV Analyzer and the New Features of v2.0 PVA Software Next PVA Webinar November 29, 10am PST http://www.solmetric.com/ webinar.html Paul Hernday Senior Applications Engineer paul@solmetric.com

More information

New Tools for PV Array Commissioning and Troubleshooting

New Tools for PV Array Commissioning and Troubleshooting New Tools for PV Array Commissioning and Troubleshooting June 30, 2011 Paul Hernday Applications Engineer paul@solmetric.com cell 707-217-3094 Bryan Bass Sales Engineer bryan@solmetric.com Solmetric Solutions

More information

Hydro Mechanics & Water Resources Engineering. Water. Management PTPG IV - Semester. PTPG IV - Semester Pre stressed Concrete

Hydro Mechanics & Water Resources Engineering. Water. Management PTPG IV - Semester. PTPG IV - Semester Pre stressed Concrete Date and Day Pre stressed UNIVERSITY COLLEGE OF ENGINEERING (Autonomous) OSMANIA UNIVERSITY M. E. (Civil) ( & ) and IV-Semester () Main Examination September 2012 EXAMINATION TIME TABLE Structural Prestressed

More information

2.2.2 Summary of Tests Conducted Step Down Circuit. We have completed these four tests successfully.

2.2.2 Summary of Tests Conducted Step Down Circuit. We have completed these four tests successfully. 2.2.2 Summary of Tests Conducted We have completed these four tests successfully. 1. First, we were able to successfully set up a Raspberry Pi 3 as a server and have other devices go on to the blank html

More information

A Master Inventor at work

A Master Inventor at work A Master Inventor at work How IBM s Andy Stanford-Clark and his llamas inspired a new type of auto insurance and other tales of innovation Some people might take the view that innovations happen by accident.

More information

Set Up Your Domain Here

Set Up Your Domain Here Roofing Business BLUEPRINT WordPress Plugin Installation & Video Walkthrough Version 1.0 Set Up Your Domain Here VIDEO 1 Introduction & Hosting Signup / Setup https://s3.amazonaws.com/rbbtraining/vid1/index.html

More information

I'm Ashley, and I'm ridiculously excited that you've taken this first MAJOR step toward changing your life (and your family) with freelance writing.

I'm Ashley, and I'm ridiculously excited that you've taken this first MAJOR step toward changing your life (and your family) with freelance writing. (c) Ashley Gainer 2017 Hi! I'm Ashley, and I'm ridiculously excited that you've taken this first MAJOR step toward changing your life (and your family) with freelance writing. This starter pack is a super-condensed

More information

Job Title: DATA SCIENTIST. Location: Champaign, Illinois. Monsanto Innovation Center - Let s Reimagine Together

Job Title: DATA SCIENTIST. Location: Champaign, Illinois. Monsanto Innovation Center - Let s Reimagine Together Job Title: DATA SCIENTIST Employees at the Innovation Center will help accelerate Monsanto s growth in emerging technologies and capabilities including engineering, data science, advanced analytics, operations

More information

Take Control. Introduction. Control Principles

Take Control. Introduction. Control Principles Introduction The XR3000 Configurable Logic Controller (XR3000 Agent) exemplifies a new, more accessible form of automation controller. Its enabling technology allows users to implement and manage their

More information

Riza Muhida. Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015

Riza Muhida. Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015 Riza Muhida Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015 1 Presentation Outline Abstract Background Objective Project Scope

More information

THE FUTURE OF DATA AND INTELLIGENCE IN TRANSPORT

THE FUTURE OF DATA AND INTELLIGENCE IN TRANSPORT THE FUTURE OF DATA AND INTELLIGENCE IN TRANSPORT Humanity s ability to use data and intelligence has increased dramatically People have always used data and intelligence to aid their journeys. In ancient

More information

Start your adventure here.

Start your adventure here. Start your adventure here. Embark on more than a career. When you work or engage with Accenture s pre-employment programs, you can improve the way the world works and change lives and drive the innovations

More information

BS in. Electrical Engineering

BS in. Electrical Engineering BS in Electrical Engineering Program Objectives Habib University s Electrical Engineering program is designed to impart rigorous technical knowledge, combined with hands-on experiential learning and a

More information

Electronics Putting Internet into Things. JP Morgan. 1 April 2015 Sam Weiss Chairman

Electronics Putting Internet into Things. JP Morgan. 1 April 2015 Sam Weiss Chairman Electronics Putting Internet into Things JP Morgan 1 April 2015 Sam Weiss Chairman Introduction Disclaimer This presentation has been prepared by Altium Limited (ACN 009 568 772) and is for information

More information

BIOMEDICAL ELECTRONICS. Date & Day II - SEMESTER ADVANCED MEDICAL IMAGING DIAGNOSTIC AND THERAPEUTIC EQUIPMENT MEDICAL PRODUCT DESIGN

BIOMEDICAL ELECTRONICS. Date & Day II - SEMESTER ADVANCED MEDICAL IMAGING DIAGNOSTIC AND THERAPEUTIC EQUIPMENT MEDICAL PRODUCT DESIGN OSMANIA UNIVERSITY, HYDERABAD - 7 M. E. (BME) (Main) Examination, September 2013 EXAMINATION TIME TABLE Time : 2.00 PM to 5.00 PM Department of BME Date & Day BIOMEDICAL ELECTRONICS II - SEMESTER ADVANCED

More information

Measuring Crossing Times of Passenger Vehicles Using Bluetooth Technology at U.S. Mexico Border

Measuring Crossing Times of Passenger Vehicles Using Bluetooth Technology at U.S. Mexico Border Center for International Intelligent Transportation Research Measuring Crossing Times of Passenger Vehicles Using Bluetooth Technology at U.S. Mexico Border CITY OF EL PASO CIUDAD JUAREZ CROSS BORDER MOBILITY

More information

An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service

An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service Engineering, Technology & Applied Science Research Vol. 8, No. 4, 2018, 3238-3242 3238 An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service Saima Zafar Emerging Sciences,

More information

Cooking gets digital. Food becomes transparent. And much more... 06/09/12 EveryCook Page 1 of 6

Cooking gets digital. Food becomes transparent. And much more... 06/09/12 EveryCook Page 1 of 6 Cooking gets digital Food becomes transparent And much more... 06/09/12 EveryCook Page 1 of 6 1 History of EveryCook 2008: I need a cooking device that stirs and keeps a temperature precisely. Then my

More information

Scalable geospatial 3D client applications in X3D - Interactive, online and in real-time

Scalable geospatial 3D client applications in X3D - Interactive, online and in real-time Scalable geospatial 3D client applications in X3D - Interactive, online and in real-time Dipl.Inform.Univ Peter Schickel CEO Bitmanagement Software Vice President Web3D Consortium, Mountain View, USA OGC/Web3D

More information

NanoTimeLapse 2015 Series

NanoTimeLapse 2015 Series NanoTimeLapse 2015 Series 18MP Time Lapse and Construction Photography Photograph your project with the stunning clarity of a Canon EOS Digital SLR camera Mobile Broadband equipped and ready to capture,

More information

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report Dream Report Product Overview Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Applications Compliance Performance Quality Corporate Dashboards

More information

Programming Arduino Next Steps: Going Further With Sketches PDF

Programming Arduino Next Steps: Going Further With Sketches PDF Programming Arduino Next Steps: Going Further With Sketches PDF Take your Arduino skills to the next level! In this practical guide, electronics guru Simon Monk takes you under the hood of Arduino and

More information

COMPUTER SCIENCE AND ENGINEERING

COMPUTER SCIENCE AND ENGINEERING COMPUTER SCIENCE AND ENGINEERING Internet of Thing Cloud Computing Big Data Analytics Network Security Distributed System Image Processing Data Science Business Intelligence Wireless Sensor Network Artificial

More information

Splunk and Ansible. Joining forces to increase implementation power. Rodrigo Santos Silva Head of Professional Services, Tempest Security Intelligence

Splunk and Ansible. Joining forces to increase implementation power. Rodrigo Santos Silva Head of Professional Services, Tempest Security Intelligence Splunk and Ansible Joining forces to increase implementation power Rodrigo Santos Silva Head of Professional Services, Tempest Security Intelligence 09/28/2017 Washington, DC Forward-Looking Statements

More information

Passionate about building the next generation of computer vision and machine learning technology.

Passionate about building the next generation of computer vision and machine learning technology. Pro Vision Lab Passionate about building the next generation of computer vision and machine learning technology. We develop turnkey solutions and innovative applications involving object detection/tracking

More information

DAI. Connecting Analog and Frequency Fuel Level Sensors

DAI. Connecting Analog and Frequency Fuel Level Sensors DAI. Connecting Analog and Frequency Fuel Level Sensors User Manual www.galileosky.com Contents Necessary Tools, Devices, Materials... 3 General Information... 4 Fuel Level Sensor Connection... 5 Connection

More information

MARKETING SPATIAL DIFFUSION

MARKETING SPATIAL DIFFUSION MARKETING SPATIAL DIFFUSION Edmund W. Schuster Laboratory for Manufacturing and Productivity Massachusetts Institute of Technology June 25, 2009 OUTLINE I. Laboratory for Manufacturing and Productivity

More information

A system for visualization of power-quality and optimization of the charging behavior for electric vehicles

A system for visualization of power-quality and optimization of the charging behavior for electric vehicles International Conference on Renewable Energies and Power Quality (ICREPQ 15) La Coruña (Spain), 25 th to 27 th March, 2015 Renewable Energy and Power Quality Journal (RE&PQJ) ISSN 2172-038 X, No.13, April

More information

The future and what to do about it

The future and what to do about it The future and what to do about it Mark Stevenson KEEP CALM AND CALL AN ECONOMIST KEEP CALM AND CALL AN ECONOMIST KEEP CALM AND CALL AN ECONOMIST < 0 < 0 < 0 0 45 < 0 0 45 < 0 0 45 > 45 < 0 0 45 > 45

More information

EITN90 Radar and Remote Sensing Lab 2

EITN90 Radar and Remote Sensing Lab 2 EITN90 Radar and Remote Sensing Lab 2 February 8, 2018 1 Learning outcomes This lab demonstrates the basic operation of a frequency modulated continuous wave (FMCW) radar, capable of range and velocity

More information

Bringing Smart Buildings to Life

Bringing Smart Buildings to Life Bringing Smart Buildings to Life Rutgers University, WINLAB (Rutgers University, WINLAB) Bringing Smart Buildings to Life 1 / 25 The Smart Planet The Smart Building Vision The idea of smart buildings was

More information

ROBOTICS & IOT. Workshop Module

ROBOTICS & IOT. Workshop Module ROBOTICS & IOT Workshop Module CURRICULUM STRUCTURE DURATION : 2 day (16 hours) Session 1 Let's Learn Embedded System & Robotics Description Under this topic, we will discuss basics and give brief idea

More information

ROBOTICS & IOT. Workshop Module

ROBOTICS & IOT. Workshop Module ROBOTICS & IOT Workshop Module CURRICULUM STRUCTURE DURATION : 2 day (16 hours) Session 1 Let's Learn Embedded System & Robotics Description Under this topic, we will discuss basics and give brief idea

More information

SOLAR. Representing clients across the renewable energy industry. Troutman Sanders LLP. troutman.com

SOLAR. Representing clients across the renewable energy industry. Troutman Sanders LLP. troutman.com SOLAR Representing clients across the renewable energy industry What clients value Troutman Sanders served as counsel to over 5600 MWs of solar projects in 2016-2017. U.S. News Best Lawyers Our innovative

More information

Week-1 [8/29, 31, 9/2]: Introduction, Discussion of Lab Platforms (Jetson)

Week-1 [8/29, 31, 9/2]: Introduction, Discussion of Lab Platforms (Jetson) CS415, Human Computer Interactive Systems Course Description: This course is an introduction to human computer interaction, graphical user interfaces, interactive systems and devices, use of user interface

More information

REMOTE SITE MONITORING

REMOTE SITE MONITORING Codan Radio Communications now offers Remote Site Monitoring options that provide live site information, giving you the power to respond intelligently to communications failures that affect your system

More information

Alabama Course of Study Digital Literacy and Computer Science Grade 8

Alabama Course of Study Digital Literacy and Computer Science Grade 8 A Correlation of Computer Programming Fundamental Concepts Using Java 2017 To the Alabama Course of Study Digital Literacy and Computer Science Grade 8 Recurring Standards for Digital Literacy and Computer

More information

Arduino Day. GIT-HUB Day

Arduino Day. GIT-HUB Day On Arduino Day Organized on 30 th August 2014, Saturday (10:00 am - 5:00 pm) & GIT-HUB Day Organized on 31 th August 2014, Sunday (10:00 am - 5:00 pm) at Room No: 128, Gujarat Technological University,

More information

CSTA K- 12 Computer Science Standards: Mapped to STEM, Common Core, and Partnership for the 21 st Century Standards

CSTA K- 12 Computer Science Standards: Mapped to STEM, Common Core, and Partnership for the 21 st Century Standards CSTA K- 12 Computer Science s: Mapped to STEM, Common Core, and Partnership for the 21 st Century s STEM Cluster Topics Common Core State s CT.L2-01 CT: Computational Use the basic steps in algorithmic

More information

ENAiKOON inmarsat-600

ENAiKOON inmarsat-600 -600 Inmarsat modem for worldwide satellite communication -600 enables communication between trackables and the back-end system through satellite communication. -600 was designed specifically for fleet

More information

Introductory Lesson 2 Internet of Things

Introductory Lesson 2 Internet of Things Introductory Lesson 2 Internet of Things 1 What you will need CloudProfessor (CPF) LED 101 light Overview In this lesson, students will design their own Smart home which utilises the Internet of Things

More information

Years 9 and 10 standard elaborations Australian Curriculum: Digital Technologies

Years 9 and 10 standard elaborations Australian Curriculum: Digital Technologies Purpose The standard elaborations (SEs) provide additional clarity when using the Australian Curriculum achievement standard to make judgments on a five-point scale. They can be used as a tool for: making

More information

Introduction. Always leave the code base a little better than you found it. Mobile +46 (0)

Introduction. Always leave the code base a little better than you found it. Mobile +46 (0) Consultant Johan Sjöblom Always leave the code base a little better than you found it Mobile +46 (0)704-582192 Email johan.sjoblom@squeed.com Introduction Johan has always had a great interest in computers

More information

The wireless alternative to expensive cabling...

The wireless alternative to expensive cabling... The wireless alternative to expensive cabling... ELPRO 105U Wireless Solutions for Process Applications New Products... New Solutions The ELPRO 105U range of wireless I/O provides a low cost alternative

More information

Design and Development of Pre-paid electricity billing using Raspberry Pi2

Design and Development of Pre-paid electricity billing using Raspberry Pi2 International Journal of Electronics Engineering Research. ISSN 0975-6450 Volume 9, Number 7 (2017) pp. 995-1005 Research India Publications http://www.ripublication.com Design and Development of Pre-paid

More information

Dr E. Kaplani. Mechanical Engineering Dept. T.E.I. of Patras, Greece

Dr E. Kaplani. Mechanical Engineering Dept. T.E.I. of Patras, Greece Innovation Week on PV Systems Engineering and the other Renewable Energy Systems. 1-10 July 2013, Patras, Greece Dr E. Kaplani ekaplani@teipat.gr Mechanical Engineering Dept. T.E.I. of Patras, Greece R.E.S.

More information

AC and DC solutions- Multiple AC and DC solutions available, please contact factory for your application.

AC and DC solutions- Multiple AC and DC solutions available, please contact factory for your application. The ATX-3000 antenna tracking controller is a user-friendly microprocessor-based intelligent positioning system to reliably track inclined orbit satellites or for use as a positioner for geosynchronous

More information

Safeguards in a Big Data World

Safeguards in a Big Data World Safeguards in a Big Data World August 2017 Dr. Karen Miller INMM Novel Technologies Workshop Albuquerque, New Mexico Operated by Los Alamos National Security, LLC for the U.S. Department of Energy's NNSA

More information

Digital Transformation. A Game Changer. How Does the Digital Transformation Affect Informatics as a Scientific Discipline?

Digital Transformation. A Game Changer. How Does the Digital Transformation Affect Informatics as a Scientific Discipline? Digital Transformation A Game Changer How Does the Digital Transformation Affect Informatics as a Scientific Discipline? Manfred Broy Technische Universität München Institut for Informatics ... the change

More information

LOCUS 2018 THEME DRAFT DRAFT 12/1/17. Smart City. Using Information, Communication and Technology

LOCUS 2018 THEME DRAFT DRAFT 12/1/17. Smart City. Using Information, Communication and Technology LOCUS 2018 THEME DRAFT DRAFT 12/1/17 Smart City Using Information, Communication and Technology Smart City: Information and Technology What is Smart City? At the age of smartphones and internet, smart

More information

Embedded Systems Programming Instruction Using a Virtual Testbed

Embedded Systems Programming Instruction Using a Virtual Testbed Embedded Systems Programming Instruction Using a Virtual Testbed Gerald Baumgartner Dept. of Computer and Information Science gb@cis.ohio-state.edu Ali Keyhani Dept. of Electrical Engineering Keyhani.1@osu.edu

More information

Creating a Public Safety Ecosystem

Creating a Public Safety Ecosystem Creating a Public Safety Ecosystem Synchronizing Human and Digital Intelligence Contents Topics Page Introduction... Secure Data Access and Sharing... The Increasing Role of Citizen Involvement... Social

More information

New Tools for PV Array Commissioning and Troubleshooting

New Tools for PV Array Commissioning and Troubleshooting New Tools for PV Array Commissioning and Troubleshooting Solmetric PVA-600 Megger MIT430 Paul Hernday Applications Engineer paul@solmetric.com cell 707-217-3094 April 5, 2012 Audio is available by telephone

More information

Photovoltaic / Solar Array Simulation Solution

Photovoltaic / Solar Array Simulation Solution PRODUCT BROCHURE Photovoltaic / Solar Array Simulation Solution Keysight s Photovoltaic / Solar Simulation Solution can help you maximize the per formance of your inverter MPPT algorithms and circuits

More information

The wireless alternative to expensive cabling...

The wireless alternative to expensive cabling... The wireless alternative to expensive cabling... ELPRO 905U Wireless Solutions for Process Applications New Products... New Solutions The ELPRO 905U range of wireless I/O provides a low cost alternative

More information

APRS Turns 35. What s Next?

APRS Turns 35. What s Next? APRS Turns 35. What s Next? Ray Rischpater, KF6GPE kf6gpe@arrl.net kf6gpe.org BayCon, 9 February 2019 The Automated Packet Reporting System... Was developed by Bob Bruniga, WB4APR beginning in 1984 Is

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 5 Graphics and Images Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will learn

More information

Internet of Things. (Ref: Slideshare)

Internet of Things. (Ref: Slideshare) Internet of Things (Ref: Slideshare) Contents Introduction/Overview The Internet of Things Applications of IoT Challenges and Barriers in IoT Future of IoT Internet Revolution Impact of the Internet Education

More information

The 7 Habits of Highly Diverse Communities. Tracy Miranda, Kichwa EclipseCon Europe 2016

The 7 Habits of Highly Diverse Communities. Tracy Miranda, Kichwa EclipseCon Europe 2016 The 7 Habits of Highly Diverse Communities Tracy Miranda, Kichwa Coders @tracymiranda EclipseCon Europe 2016 Transformational Technology Human Genome Studies Keolu Fox: Why genetic research must be more

More information

Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse

Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse Institut für Computertechnik ICT Institute of Computer Technology Andreas Gerstinger IIR Konferenz Software Testen &

More information

Total Hours Registration through Website or for further details please visit (Refer Upcoming Events Section)

Total Hours Registration through Website or for further details please visit   (Refer Upcoming Events Section) Total Hours 110-150 Registration Q R Code Registration through Website or for further details please visit http://www.rknec.edu/ (Refer Upcoming Events Section) Module 1: Basics of Microprocessor & Microcontroller

More information

Mobile Broadcast: Beyond Mobile TV

Mobile Broadcast: Beyond Mobile TV Mobile Broadcast: Beyond Mobile TV Peter Mataga, Ph.D. Chief Architect Roundbox, Inc. Introducing Roundbox Mobile Broadcast and Multicast Software Client / server; infrastructure / applications Core products

More information

The Beauty and Joy of Computing

The Beauty and Joy of Computing The Beauty and Joy of Computing Calendar? Invite your friends to take CS10 next sem! Lecture #25 Summary & Review Slip days Michael Head TA Lab this week is Survey (0:20), online final (1:30) Register

More information

Data and the User Experience. Implementing good design for excellent visualizations

Data and the User Experience. Implementing good design for excellent visualizations Data and the User Experience Implementing good design for excellent visualizations Session Overview About Discuss why visualization and information design matters Approaches We ll explore some completed

More information

South West Public Engagement Protocol for Wind Energy

South West Public Engagement Protocol for Wind Energy South West Public Engagement Protocol for Wind Energy October 2004 South West Renewable Energy Agency Sterling House, Dix s Field, Exeter, EX1 1QA Tel: 01392 229394 Fax: 01392 229395 Email: admin@regensw.co.uk

More information

3-DEMON MONITORING PLATFORM: EXAMPLES OF APPLICATIONS IN STRUCTURAL AND GEOTECHNICAL MONITORING PROJECTS

3-DEMON MONITORING PLATFORM: EXAMPLES OF APPLICATIONS IN STRUCTURAL AND GEOTECHNICAL MONITORING PROJECTS 3-DEMON MONITORING PLATFORM: EXAMPLES OF APPLICATIONS IN STRUCTURAL AND GEOTECHNICAL MONITORING PROJECTS Luca MANETTI, Daniele INAUDI and Branko GLISIC Smartec SA, Switzerland Abstract: The 3DeMoN (3-Dimentional

More information

Wearable Robotics Funding Opportunities and Commercialization of Robotics and Mobility Systems Bruce Floersheim, Ph.D., P.E.

Wearable Robotics Funding Opportunities and Commercialization of Robotics and Mobility Systems Bruce Floersheim, Ph.D., P.E. Wearable Robotics Funding Opportunities and Commercialization of Robotics and Mobility Systems Bruce Floersheim, Ph.D., P.E. www.wearablerobotics.com Help shape a global future leveraging technology in

More information

model 802C HF Wideband Direction Finding System 802C

model 802C HF Wideband Direction Finding System 802C model 802C HF Wideband Direction Finding System 802C Complete HF COMINT platform that provides direction finding and signal collection capabilities in a single integrated solution Wideband signal detection,

More information

Optimized testing of electric drives

Optimized testing of electric drives Measuring and analyzing of electrical machines testing by HBM Optimized testing of electric drives Weaknesses of the current approach Facing challenges: with the standard method? Improving the efficiency

More information

MSc(CompSc) List of courses offered in

MSc(CompSc) List of courses offered in Office of the MSc Programme in Computer Science Department of Computer Science The University of Hong Kong Pokfulam Road, Hong Kong. Tel: (+852) 3917 1828 Fax: (+852) 2547 4442 Email: msccs@cs.hku.hk (The

More information

AC : THE UBIQUITOUS MICROCONTROLLER IN MECHANICAL ENGINEERING: MEASUREMENT SYSTEMS

AC : THE UBIQUITOUS MICROCONTROLLER IN MECHANICAL ENGINEERING: MEASUREMENT SYSTEMS AC 8-1513: THE UBIQUITOUS MICROCONTROLLER IN MECHANICAL ENGINEERING: MEASUREMENT SYSTEMS Michael Holden, California Maritime Academy Michael Holden teaches in the department of Mechanical Engineering at

More information

Solmetric White Paper: Winning Contracts with PV Array Testing

Solmetric White Paper: Winning Contracts with PV Array Testing Solmetric White Paper: Winning Contracts with PV Array Testing Contents Introduction...1 Background: I-V Curves in Field Applications...2 What is an I-V curve?...2 Where has I-V curve tracing been used

More information

Hands on New Tech Fast and FREE with DevNet Sandbox

Hands on New Tech Fast and FREE with DevNet Sandbox Hands on New Tech Fast and FREE with DevNet Sandbox Jacob D. Adams, Developer, DevNet Sandbox @jacob200ok Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Enforcer 32WE-APP. The control panel Enforcer 32WE-APP is certified to EN50131 Grade 2 and offers a wide range of certified wireless accessories.

Enforcer 32WE-APP. The control panel Enforcer 32WE-APP is certified to EN50131 Grade 2 and offers a wide range of certified wireless accessories. Enforcer 32WE-APP Enforcer 32WE-APP Enforcer 32WE is the first wireless system on the market that is capable to guarantee high performance maximum security wireless protection via the advanced two way

More information

Beam Control: Timing, Protection, Database and Application Software

Beam Control: Timing, Protection, Database and Application Software Beam Control: Timing, Protection, Database and Application Software C.M. Chu, J. Tang 储中明 / 唐渊卿 Spallation Neutron Source Oak Ridge National Laboratory Outline Control software overview Timing system Protection

More information

The Future is Now: Are you ready? Brian David

The Future is Now: Are you ready? Brian David The Future is Now: Are you ready? Brian David Johnson @BDJFuturist Age 13 Who am I? Age 13 Who am I? Who am I? Nerd! Age 13 In the next 10 years 2020 and Beyond Desktops Laptops Large Tablets Smartphone

More information

MOTOROLA SOLUTIONS 2017 K-12 EDUCATION INDUSTRY SURVEY REPORT SURVEY REPORT 2017 SCHOOL COMMUNICATIONS

MOTOROLA SOLUTIONS 2017 K-12 EDUCATION INDUSTRY SURVEY REPORT SURVEY REPORT 2017 SCHOOL COMMUNICATIONS MOTOROLA SOLUTIONS 2017 K-12 EDUCATION INDUSTRY SURVEY REPORT SURVEY REPORT 2017 SCHOOL COMMUNICATIONS THE POWER OF UNIFIED SCHOOL COMMUNICATIONS We look to our nation s schools as an oasis of learning,

More information

Ideal for high dynamic range measurements from compression to noise floor

Ideal for high dynamic range measurements from compression to noise floor USB/Ethernet Very Wideband Synthesized Signal Generator 5Ω -75 dbm to +14 dbm, 25 khz - 64 MHz The Big Deal Cost effective production test solution Power level resolution of.1 db Frequency resolution under.1

More information