Support Vector Machines: Optimization of Decision Making. Christopher Katinas March 10, 2016

Size: px
Start display at page:

Download "Support Vector Machines: Optimization of Decision Making. Christopher Katinas March 10, 2016"

Transcription

1 Support Vector Machines: Optimization of Decision Making Christopher Katinas March 10, 2016

2 Overview Background of Support Vector Machines Segregation Functions/Problem Statement Methodology Training/Testing Results Conclusions

3 Support Vector Machines (SVMs) Goal: Maximize the margin between two distinct groups via a segregation function Certain engineering problems require high certainty estimations of the equation separating two data sets (ex. phase diagrams in thermodynamics) Distinct phases are separated by functions which may not be described easily in closed form Can the liquid/vapor line be recreated by only using select points and using an SVM to identify the function?

4 Segregation Functions to Match yy xx = 0.01xx Parabola

5 Segregation Functions to Match yy xx = 0.01xx Parabola yy xx = 0.5xx + 25 Line

6 Segregation Functions to Match yy xx = 0.01xx Parabola yy xx = 0.5xx yy xx = xx Line Antoinne Equation for Vapor Pressure of Water

7 Segregation Functions to Match yy xx = 0.01xx Parabola yy xx = 0.5xx yy xx = xx Line Antoinne Equation for Vapor Pressure of Water 2 yy xx = ± 23 2 xx Circle of Radius 23 at centered at (54,50)

8 Segregation Functions to Match yy xx = 0.01xx Parabola yy xx = 0.5xx yy xx = xx Line Antoinne Equation for Vapor Pressure of Water 2 yy xx = ± 23 2 xx Circle of Radius 23 at centered at (54,50) 2 yy xx = ± 62 xx yy xx = ± 23 2 xx Circle of Radius 23 at centered at (54,50) and Ellipse centered at (84,20)

9 Methodology Solve Lagrangian Dual Problem nn nn nn max αα ii 1 2 αα ii αα jj yy ii yy jj KK(xx ii, xx jj ) ii=1 ii=1 jj=1 nn such that CC αα ii 0 and yy ii αα ii = 0 ii=1 nn nn nn min αα ii αα ii αα jj yy ii yy jj KK(xx ii, xx jj ) Kernel Function KK xx ii, xx jj = PP + AAxx ii TT xx jj dd Select A to prevent numerical overflow for a given d, and P should be large to force optimizer to solve for correct weights - A -1 =max(x i T x j ) [Normalize inputs] - P= 1eeee 11/dd ii=1 ii=1 jj=1 nn such that CC αα ii 0and yy ii αα ii ii=1 = 0 Matlab quadprog can solve this! C was set to 1.0 for all simulations performed in this study (hence the choice of A and P)

10 Training Method Use Delaunay Triangulation to identify most critical points and query the function close to the boundary RED line segments denote where segregation function must reside Specify maximum number of refinements Keep only the points which bound the function for faster optimization

11 Training/Testing Results Magenta X = Group 1 Test Points Green X = Group 2 Test Points Blue Lines = Segregation Function Anti- Gate Red Lines = Segregation Function Gate Black circles = Desired New Points Magenta X = Group 1 Test Points Blue Area = Testing Group 1 Green X = Group 2 Test Points Maroon Area = Testing Group 2 Cyan circles = Support Vectors Yellow Line = Actual Boundary All results shown for 8 refinements and five random seeding points on each side of the function Eighth Order Polynomial Kernel was used. All Training Points were Kept!

12 Training/Testing Results Parabolic 0.68% Error Line 0.54% Error Antoinne 0.94% Error Circle 0.13% Error Circle/Ellipse 0.60% Error

13 Training/Testing Results Error in Antoinne Equation was due to no test points at boundaries Created one point at each corner of the domain [Pre-Seeding] Antoinne 0.94% Error No Pre-Seeding Antoinne 0.26% Error Pre-Seeded Boundary Points Only

14 Training/Testing Results with Noise Slack variables automatically included based on methodology shown earlier. More support vectors than for the no noise case due to higher difficult in fitting of segregation function Antoinne 0.26% Error Zero Noise Antoinne 0.70% Error (5 units of uniform random noise prescribed in each input variable)

15 Conclusions SVMs are extremely versatile in allowing for quantifiable decision-making strategies Capability of support vector machines was successfully demonstrated via five examples Care must be taken in selecting the parameters and training points Poor choice of number of training points can lead to improper bounding function and ultimately higher error Delaunay triangulation is a new method to acquire more desirable training points over random domain space Modified Kernel function constants were based on optimization versatility and general convergence Noise can be included and SVM is capable of creating a reasonable segregation function

Lecture 10. Support Vector Machines (cont.)

Lecture 10. Support Vector Machines (cont.) Lecture 10. Support Vector Machines (cont.) COMP90051 Statistical Machine Learning Semester 2, 2017 Lecturer: Andrey Kan Copyright: University of Melbourne This lecture Soft margin SVM Intuition and problem

More information

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag Decision Trees Nicholas Ruozzi University of Texas at Dallas Based on the slides of Vibhav Gogate and David Sontag Announcements Course TA: Hao Xiong Office hours: Friday 2pm-4pm in ECSS2.104A1 First homework

More information

Lecture 5. Optimisation. Regularisation

Lecture 5. Optimisation. Regularisation Lecture 5. Optimisation. Regularisation COMP90051 Statistical Machine Learning Semester 2, 2017 Lecturer: Andrey Kan Copyright: University of Melbourne Iterative optimisation Loss functions Coordinate

More information

Logistic Regression. Hongning Wang

Logistic Regression. Hongning Wang Logistic Regression Hongning Wang CS@UVa Today s lecture Logistic regression model A discriminative classification model Two different perspectives to derive the model Parameter estimation CS@UVa CS 6501:

More information

Mixture Models & EM. Nicholas Ruozzi University of Texas at Dallas. based on the slides of Vibhav Gogate

Mixture Models & EM. Nicholas Ruozzi University of Texas at Dallas. based on the slides of Vibhav Gogate Mixture Models & EM Nicholas Ruozzi University of Texas at Dallas based on the slides of Vibhav Gogate Previously We looked at -means and hierarchical clustering as mechanisms for unsupervised learning

More information

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher Mini-project 3 Tennis ball launcher Mini-Project 3 requires you to use MATLAB to model the trajectory of a tennis ball being shot from a tennis ball launcher to a player. The tennis ball trajectory model

More information

Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM)

Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM) Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM) 1 HSR - University of Applied Sciences of Eastern Switzerland Institute

More information

Attacking and defending neural networks. HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China

Attacking and defending neural networks. HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China Attacking and defending neural networks HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China Outline Background Attacking methods Defending methods 2 AI

More information

67. Sectional normalization and recognization on the PV-Diagram of reciprocating compressor

67. Sectional normalization and recognization on the PV-Diagram of reciprocating compressor 67. Sectional normalization and recognization on the PV-Diagram of reciprocating compressor Jin-dong Wang 1, Yi-qi Gao 2, Hai-yang Zhao 3, Rui Cong 4 School of Mechanical Science and Engineering, Northeast

More information

TSP at isolated intersections: Some advances under simulation environment

TSP at isolated intersections: Some advances under simulation environment TSP at isolated intersections: Some advances under simulation environment Zhengyao Yu Vikash V. Gayah Eleni Christofa TESC 2018 December 5, 2018 Overview Motivation Problem introduction Assumptions Formation

More information

Special Topics: Data Science

Special Topics: Data Science Special Topics: Data Science L Linear Methods for Prediction Dr. Vidhyasaharan Sethu School of Electrical Engineering & Telecommunications University of New South Wales Sydney, Australia V. Sethu 1 Topics

More information

Bayesian Methods: Naïve Bayes

Bayesian Methods: Naïve Bayes Bayesian Methods: Naïve Bayes Nicholas Ruozzi University of Texas at Dallas based on the slides of Vibhav Gogate Last Time Parameter learning Learning the parameter of a simple coin flipping model Prior

More information

knn & Naïve Bayes Hongning Wang

knn & Naïve Bayes Hongning Wang knn & Naïve Bayes Hongning Wang CS@UVa Today s lecture Instance-based classifiers k nearest neighbors Non-parametric learning algorithm Model-based classifiers Naïve Bayes classifier A generative model

More information

Pre-Kindergarten 2017 Summer Packet. Robert F Woodall Elementary

Pre-Kindergarten 2017 Summer Packet. Robert F Woodall Elementary Pre-Kindergarten 2017 Summer Packet Robert F Woodall Elementary In the fall, on your child s testing day, please bring this packet back for a special reward that will be awarded to your child for completion

More information

Math 4. Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section?

Math 4. Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section? Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section? 1.1.1: Study - What is a Conic Section? Duration: 50 min 1.1.2: Quiz - What is a Conic Section? Duration: 25 min / 18 Lesson 1.2: Geometry of

More information

Operational Risk Management: Preventive vs. Corrective Control

Operational Risk Management: Preventive vs. Corrective Control Operational Risk Management: Preventive vs. Corrective Control Yuqian Xu (UIUC) July 2018 Joint Work with Lingjiong Zhu and Michael Pinedo 1 Research Questions How to manage operational risk? How does

More information

Functions of Random Variables & Expectation, Mean and Variance

Functions of Random Variables & Expectation, Mean and Variance Functions of Random Variables & Expectation, Mean and Variance Kuan-Yu Chen ( 陳冠宇 ) @ TR-409, NTUST Functions of Random Variables 1 Given a random variables XX, one may generate other random variables

More information

Fluid-Structure Interaction Analysis of a Flow Control Device

Fluid-Structure Interaction Analysis of a Flow Control Device Abaqus Technology Brief Fluid-Structure Interaction Analysis of a Control Device TB-06-FSI-2 Revised: April 2007. Summary The Vernay VernaFlo flow controls are custom-designed fluid flow management devices

More information

Tie Breaking Procedure

Tie Breaking Procedure Ohio Youth Basketball Tie Breaking Procedure The higher seeded team when two teams have the same record after completion of pool play will be determined by the winner of their head to head competition.

More information

Imperfectly Shared Randomness in Communication

Imperfectly Shared Randomness in Communication Imperfectly Shared Randomness in Communication Madhu Sudan Harvard Joint work with Clément Canonne (Columbia), Venkatesan Guruswami (CMU) and Raghu Meka (UCLA). 11/16/2016 UofT: ISR in Communication 1

More information

A Novel Approach to Predicting the Results of NBA Matches

A Novel Approach to Predicting the Results of NBA Matches A Novel Approach to Predicting the Results of NBA Matches Omid Aryan Stanford University aryano@stanford.edu Ali Reza Sharafat Stanford University sharafat@stanford.edu Abstract The current paper presents

More information

A Chiller Control Algorithm for Multiple Variablespeed Centrifugal Compressors

A Chiller Control Algorithm for Multiple Variablespeed Centrifugal Compressors Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2014 A Chiller Control Algorithm for Multiple Variablespeed Centrifugal Compressors Piero

More information

Course 495: Advanced Statistical Machine Learning/Pattern Recognition

Course 495: Advanced Statistical Machine Learning/Pattern Recognition Course 495: Advanced Statistical Machine Learning/Pattern Recognition Lectures: Stefanos Zafeiriou Goal (Lectures): To present modern statistical machine learning/pattern recognition algorithms. The course

More information

A Class of Regression Estimator with Cum-Dual Ratio Estimator as Intercept

A Class of Regression Estimator with Cum-Dual Ratio Estimator as Intercept International Journal of Probability and Statistics 015, 4(): 4-50 DOI: 10.593/j.ijps.015040.0 A Class of Regression Estimator with Cum-Dual Ratio Estimator as Intercept F. B. Adebola 1, N. A. Adegoke

More information

ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS. Final Report

ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS. Final Report Preparedby: ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS Final Report Prepared for Maricopa County Department of Transportation Prepared by TABLE OF CONTENTS Page EXECUTIVE SUMMARY ES-1

More information

Chapter Capacity and LOS Analysis of a Signalized I/S Overview Methodology Scope Limitation

Chapter Capacity and LOS Analysis of a Signalized I/S Overview Methodology Scope Limitation Chapter 37 Capacity and LOS Analysis of a Signalized I/S 37.1 Overview The Highway Capacity Manual defines the capacity as the maximum howdy rate at which persons or vehicle can be reasonably expected

More information

Abstract In this paper, the author deals with the properties of circumscribed ellipses of convex quadrilaterals, using tools of parallel projective tr

Abstract In this paper, the author deals with the properties of circumscribed ellipses of convex quadrilaterals, using tools of parallel projective tr Study on the Properties of Circumscribed Ellipses of Convex Quadrilaterals Author: Yixi Shen Mentors: Zhongyuan Dai; Yijun Yao No. High School of East China Normal University Shanghai, China December,

More information

What is Restrained and Unrestrained Pipes and what is the Strength Criteria

What is Restrained and Unrestrained Pipes and what is the Strength Criteria What is Restrained and Unrestrained Pipes and what is the Strength Criteria Alex Matveev, September 11, 2018 About author: Alex Matveev is one of the authors of pipe stress analysis codes GOST 32388-2013

More information

SNARKs with Preprocessing. Eran Tromer

SNARKs with Preprocessing. Eran Tromer SNARKs with Preprocessing Eran Tromer BIU Winter School on Verifiable Computation and Special Encryption 4-7 Jan 206 G: Someone generates and publishes a common reference string P: Prover picks NP statement

More information

HIGHWAY CAPACITY MANUAL 2010: NEW SIGNALIZED INTERSECTION METHODOLOGY. James A. Bonneson, Ph.D., P.E.

HIGHWAY CAPACITY MANUAL 2010: NEW SIGNALIZED INTERSECTION METHODOLOGY. James A. Bonneson, Ph.D., P.E. HIGHWAY CAPACITY MANUAL 2010: NEW SIGNALIZED INTERSECTION METHODOLOGY James A. Bonneson, Ph.D., P.E. Texas Transportation ti Institute t Housekeeping 2 All participant phone lines are muted to avoid distractions

More information

Use of Auxiliary Variables and Asymptotically Optimum Estimators in Double Sampling

Use of Auxiliary Variables and Asymptotically Optimum Estimators in Double Sampling International Journal of Statistics and Probability; Vol. 5, No. 3; May 2016 ISSN 1927-7032 E-ISSN 1927-7040 Published by Canadian Center of Science and Education Use of Auxiliary Variables and Asymptotically

More information

CS249: ADVANCED DATA MINING

CS249: ADVANCED DATA MINING CS249: ADVANCED DATA MINING Linear Regression, Logistic Regression, and GLMs Instructor: Yizhou Sun yzsun@cs.ucla.edu April 24, 2017 About WWW2017 Conference 2 Turing Award Winner Sir Tim Berners-Lee 3

More information

Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls

Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls 2014 Global Level Crossing Symposium August 2014, Urbana, IL, USA Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls - A Driving Simulator Study Presenter: Dr. Asad J. Khattak

More information

Operations on Radical Expressions; Rationalization of Denominators

Operations on Radical Expressions; Rationalization of Denominators 0 RD. 1 2 2 2 2 2 2 2 Operations on Radical Expressions; Rationalization of Denominators Unlike operations on fractions or decimals, sums and differences of many radicals cannot be simplified. For instance,

More information

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams In this chapter we consider the property values and relationships of a pure substance (such as water) which can exist in three phases

More information

CFD Analysis of Giromill Type Vertical Axis Wind Turbine

CFD Analysis of Giromill Type Vertical Axis Wind Turbine 242 CFD Analysis Giromill Type Vertical Axis Wind Turbine K. Sainath 1, T. Ravi 2, Suresh Akella 3, P. Madhu Sudhan 4 1 Associate Pressor, Department Mechanical Engineering, Sreyas Inst. Engg. & Tech.,

More information

Product Decomposition in Supply Chain Planning

Product Decomposition in Supply Chain Planning Mario R. Eden, Marianthi Ierapetritou and Gavin P. Towler (Editors) Proceedings of the 13 th International Symposium on Process Systems Engineering PSE 2018 July 1-5, 2018, San Diego, California, USA 2018

More information

Physical Design of CMOS Integrated Circuits

Physical Design of CMOS Integrated Circuits Physical Design of CMOS Integrated Circuits Dae Hyun Kim EECS Washington State University References John P. Uyemura, Introduction to VLSI Circuits and Systems, 2002. Chapter 5 Goal Understand how to physically

More information

San Francisco State University ECON 560 Summer Midterm Exam 2. Monday, July hour 15 minutes

San Francisco State University ECON 560 Summer Midterm Exam 2. Monday, July hour 15 minutes San Francisco State University Michael Bar ECON 560 Summer 2018 Midterm Exam 2 Monday, July 30 1 hour 15 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. No calculators or electronic

More information

Chapter 2 Ventilation Network Analysis

Chapter 2 Ventilation Network Analysis Chapter 2 Ventilation Network Analysis Abstract Ventilation network analysis deals with complex working procedures to calculate the air currents flowing in the various meshes or branches of a mine network.

More information

ANDRA Benchmark Workshop (Paris-Orly, April 2007)

ANDRA Benchmark Workshop (Paris-Orly, April 2007) ANDRA Benchmark Workshop (Paris-Orly, April 27) Javeri (GRS, Köln, Germany): 2-Dim. Case 1B Code TOUGH2/EOS7 developed by Pruess et al, Lawrence Berkeley National Laboratories, California, USA (199), Since

More information

Coaches, Parents, Players and Fans

Coaches, Parents, Players and Fans P.O. Box 865 * Lancaster, OH 43130 * 740-808-0380 * www.ohioyouthbasketball.com Coaches, Parents, Players and Fans Sunday s Championship Tournament in Boys Grades 5th thru 10/11th will be conducted in

More information

Implementing Provisions for Art. 411 of the ICR Ski Jumping

Implementing Provisions for Art. 411 of the ICR Ski Jumping JUMPING HILLS CONSTRUCTION NORM 2018 Implementing Provisions for Art. 411 of the ICR Ski Jumping Author: Hans-Heini Gasser (SUI) EDITION NOVEMBER 2018 Table of Contents Page 1. Preliminary Remarks 3 2.

More information

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot 2007 IEEE International Conference on Robotics and Automation Roma, Italy, 10-14 April 2007 ThC9.3 Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot Tomohito Takubo, Takeshi

More information

Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data

Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data Bo Tang, Stanley Chien, and Yaobin Chen Transportation Active Safety Institute Indiana University-Purdue

More information

Verification and Validation Pathfinder

Verification and Validation Pathfinder 403 Poyntz Avenue, Suite B Manhattan, KS 66502 USA +1.785.770.8511 www.thunderheadeng.com Verification and Validation Pathfinder 2015.1 Release 0504 x64 Disclaimer Thunderhead Engineering makes no warranty,

More information

Energy balance of the model as described in Theory and Model

Energy balance of the model as described in Theory and Model Energy balance of the model as described in Theory and Model 1. Introduction 2. Power sources and -sinks 3. Numerical results 4. Final remarks 5. Heavy shell (added) 1. Introduction The energy balance

More information

Ammonia Synthesis with Aspen Plus V8.0

Ammonia Synthesis with Aspen Plus V8.0 Ammonia Synthesis with Aspen Plus V8.0 Part 2 Closed Loop Simulation of Ammonia Synthesis 1. Lesson Objectives Review Aspen Plus convergence methods Build upon the open loop Ammonia Synthesis process simulation

More information

ScienceDirect. Rebounding strategies in basketball

ScienceDirect. Rebounding strategies in basketball Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 72 ( 2014 ) 823 828 The 2014 conference of the International Sports Engineering Association Rebounding strategies in basketball

More information

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes San Francisco State University Michael Bar ECON 312 Fall 2018 Midterm Exam 1, section 2 Thursday, September 27 1 hour, 15 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. You can

More information

Minimum Mean-Square Error (MMSE) and Linear MMSE (LMMSE) Estimation

Minimum Mean-Square Error (MMSE) and Linear MMSE (LMMSE) Estimation Minimum Mean-Square Error (MMSE) and Linear MMSE (LMMSE) Estimation Outline: MMSE estimation, Linear MMSE (LMMSE) estimation, Geometric formulation of LMMSE estimation and orthogonality principle. Reading:

More information

DP Ice Model Test of Arctic Drillship

DP Ice Model Test of Arctic Drillship Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 11-12, 211 ICE TESTING SESSION DP Ice Model Test of Arctic Drillship Torbjørn Hals Kongsberg Maritime, Kongsberg, Norway Fredrik

More information

Tutorial 5 Relative equilibrium

Tutorial 5 Relative equilibrium Tutorial 5 Relative equilibrium 1. n open rectangular tank 3m long and 2m wide is filled with water to a depth of 1.5m. Find the slope of the water surface when the tank moves with an acceleration of 5m/s

More information

The Usage of Propeller Tunnels For Higher Efficiency and Lower Vibration. M. Burak Şamşul

The Usage of Propeller Tunnels For Higher Efficiency and Lower Vibration. M. Burak Şamşul The Usage of Propeller Tunnels For Higher Efficiency and Lower Vibration M. Burak Şamşul ITU AYOC 2014 - Milper Pervane Teknolojileri Company Profile MILPER is established in 2011 as a Research and Development

More information

New Class of Almost Unbiased Modified Ratio Cum Product Estimators with Knownparameters of Auxiliary Variables

New Class of Almost Unbiased Modified Ratio Cum Product Estimators with Knownparameters of Auxiliary Variables Journal of Mathematics and System Science 7 (017) 48-60 doi: 10.1765/159-591/017.09.00 D DAVID PUBLISHING New Class of Almost Unbiased Modified Ratio Cum Product Estimators with Knownparameters of Auxiliary

More information

Diagnosis of Fuel Evaporative System

Diagnosis of Fuel Evaporative System T S F S 0 6 L A B E X E R C I S E 2 Diagnosis of Fuel Evaporative System April 5, 2017 1 objective The objective with this laboratory exercise is to read, understand, and implement an algorithm described

More information

Modeling Approaches to Increase the Efficiency of Clear-Point- Based Solubility Characterization

Modeling Approaches to Increase the Efficiency of Clear-Point- Based Solubility Characterization Modeling Approaches to Increase the Efficiency of Clear-Point- Based Solubility Characterization Paul Larsen, Dallin Whitaker Crop Protection Product Design & Process R&D OCTOBER 4, 2018 TECHNOBIS CRYSTALLI

More information

ECO 745: Theory of International Economics. Jack Rossbach Fall Lecture 6

ECO 745: Theory of International Economics. Jack Rossbach Fall Lecture 6 ECO 745: Theory of International Economics Jack Rossbach Fall 2015 - Lecture 6 Review We ve covered several models of trade, but the empirics have been mixed Difficulties identifying goods with a technological

More information

Using the CONVAL software for the petrochemical plant control valves checking. Case study

Using the CONVAL software for the petrochemical plant control valves checking. Case study Using the CONVAL software for the petrochemical plant control valves checking. Case study C. Patrascioiu, G. Stamatescu, C. Lazar Abstract In the paper there are presented the researches into field of

More information

Motion Control of a Bipedal Walking Robot

Motion Control of a Bipedal Walking Robot Motion Control of a Bipedal Walking Robot Lai Wei Ying, Tang Howe Hing, Mohamed bin Hussein Faculty of Mechanical Engineering Universiti Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia. Wylai2@live.my

More information

How Many Iterations Are Enough?

How Many Iterations Are Enough? T ECOLOTE R ESEARCH, I NC. Bridging Engineering and Economics Since 1973 How Many Are Enough? Alfred Smith 2008 Joint SCEA/ISPA Annual Conference and Training Workshop Pacific Palms Conference Resort,

More information

Combining Experimental and Non-Experimental Design in Causal Inference

Combining Experimental and Non-Experimental Design in Causal Inference Combining Experimental and Non-Experimental Design in Causal Inference Kari Lock Morgan Department of Statistics Penn State University Rao Prize Conference May 12 th, 2017 A Tribute to Don Design trumps

More information

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14.

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14. Workshop 1: Bubbly Flow in a Rectangular Bubble Column 14. 5 Release Multiphase Flow Modeling In ANSYS CFX 2013 ANSYS, Inc. WS1-1 Release 14.5 Introduction This workshop models the dispersion of air bubbles

More information

Write these equations in your notes if they re not already there. You will want them for Exam 1 & the Final.

Write these equations in your notes if they re not already there. You will want them for Exam 1 & the Final. Tuesday January 30 Assignment 3: Due Friday, 11:59pm.like every Friday Pre-Class Assignment: 15min before class like every class Office Hours: Wed. 10-11am, 204 EAL Help Room: Wed. & Thurs. 6-9pm, here

More information

Application Note AN-107

Application Note AN-107 SPEC Sensor TM Characterization & Calibration Considerations Scope This document is provided to describe the considerations needed to characterize, calibrate, verify and validate the measurement performance

More information

3D Inversion in GM-SYS 3D Modelling

3D Inversion in GM-SYS 3D Modelling 3D Inversion in GM-SYS 3D Modelling GM-SYS 3D provides a wide range of inversion options including inversion for both layer structure and physical properties for gravity and magnetic data. There is an

More information

A quantitative software testing method for hardware and software integrated systems in safety critical applications

A quantitative software testing method for hardware and software integrated systems in safety critical applications A quantitative software testing method for hardware and software integrated systems in safety critical applications Hai ang a, Lixuan Lu* a a University of Ontario Institute of echnology, Oshawa, ON, Canada

More information

Numerical modeling of refraction and diffraction

Numerical modeling of refraction and diffraction Numerical modeling of refraction and diffraction L. Balas, A. inan Civil Engineering Department, Gazi University, Turkey Abstract A numerical model which simulates the propagation of waves over a complex

More information

Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness

Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness Proceedings Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness Jacob Lambeth *, Dustin Brekke and Jeff Brunski Cleveland Golf, 5601 Skylab Rd. Huntington Beach, CA 92647, USA;

More information

LQG Based Robust Tracking Control of Blood Gases during Extracorporeal Membrane Oxygenation

LQG Based Robust Tracking Control of Blood Gases during Extracorporeal Membrane Oxygenation 2011 American Control Conference on O'Farrell Street, San Francisco, CA, USA June 29 - July 01, 2011 LQG Based Robust Tracking Control of Blood Gases during Extracorporeal Membrane Oxygenation David J.

More information

A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING

A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING Shigeyuki Okazaki a and Satoshi Matsushita a a Department of Architecture and Civil Engineering, Faculty of Engineering,

More information

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE.

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE. HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE Kazunori Uruma 1, Katsumi Konishi 2, Tomohiro Takahashi 1 and Toshihiro Furukawa 1 1 Graduate School of Engineering, Tokyo University

More information

Workshop 302-compressor-anti-surge

Workshop 302-compressor-anti-surge Workshop Objectives Workshop 302-compressor-anti-surge Illustrate how to create a simple anti-surge control on a compressor Workshop Description Flowsheeet: A feed stream at 1 bar with methane, ethane

More information

Genetics and Inheritance

Genetics and Inheritance + Genetics and Inheritance + Intro to Genetics Every living thing plant or animal, microbe or human being has a set of characteristics inherited from its parent or parents. Your DNA holds the genetic code

More information

Communication Amid Uncertainty

Communication Amid Uncertainty Communication Amid Uncertainty Madhu Sudan Harvard University Based on joint works with Brendan Juba, Oded Goldreich, Adam Kalai, Sanjeev Khanna, Elad Haramaty, Jacob Leshno, Clement Canonne, Venkatesan

More information

CVEN Computer Applications in Engineering and Construction. Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods

CVEN Computer Applications in Engineering and Construction. Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods CVEN 30-501 Computer Applications in Engineering and Construction Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods Date distributed: 9/30/016 Date due: 10/14/016 at 3:00 PM (electronic

More information

CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction

CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction Herds are a classic complex system found in nature. From interactions amongst individual animals, group behavior emerges. Historically

More information

New Albany / Fred Klink Memorial Classic 3rd Grade Championship Bracket **Daylight Saving Time - Turn Clocks Up One Hour**

New Albany / Fred Klink Memorial Classic 3rd Grade Championship Bracket **Daylight Saving Time - Turn Clocks Up One Hour** rd Grade Championship Bracket st Pool B nd Pool A 9:00 am New Albany Annex :0 am New Albany Annex st Pool C nd Pool B :0 pm New Albany nd Pool C 0:05 am New Albany Annex :5 pm New Albany Annex st Pool

More information

PEAPOD. Pneumatically Energized Auto-throttled Pump Operated for a Developmental Upperstage. Test Readiness Review

PEAPOD. Pneumatically Energized Auto-throttled Pump Operated for a Developmental Upperstage. Test Readiness Review PEAPOD Pneumatically Energized Auto-throttled Pump Operated for a Developmental Upperstage Test Readiness Review Customer: Special Aerospace Services Chris Webber and Tim Bulk 1 Overview Project Overview

More information

Autodesk Moldflow Communicator Process settings

Autodesk Moldflow Communicator Process settings Autodesk Moldflow Communicator 212 Process settings Revision 1, 3 March 211. Contents Chapter 1 Process settings....................................... 1 Profiles.................................................

More information

Dynamic Simulation for T-9 Storage Tank (Holding Case)

Dynamic Simulation for T-9 Storage Tank (Holding Case) Dynamic Simulation for T-9 Storage Tank (Holding Case) CASE 1: 19,642 Kg/Hr (Holding: 52 o C), No Liquid Draw Workshop Description Estimation of vapor flow rate coming out from the T-9 tank for holding

More information

Hydraulic Modeling to Aid TDG Abatement at Boundary and Cabinet Gorge Dams

Hydraulic Modeling to Aid TDG Abatement at Boundary and Cabinet Gorge Dams Hydraulic Modeling to Aid TDG Abatement at Boundary and Cabinet Gorge Dams Joe Orlins, P.E., Ph.D. NWHA Technical Seminar May 15, 2014 Boundary and Cabinet Gorge Dams The Problem: Too Much Gas Boundary

More information

SAMPLE MAT Proceedings of the 10th International Conference on Stability of Ships

SAMPLE MAT Proceedings of the 10th International Conference on Stability of Ships and Ocean Vehicles 1 Application of Dynamic V-Lines to Naval Vessels Matthew Heywood, BMT Defence Services Ltd, mheywood@bm tdsl.co.uk David Smith, UK Ministry of Defence, DESSESea-ShipStab1@mod.uk ABSTRACT

More information

Team Advancement. 7.1 Overview Pre-Qualifying Teams Teams Competing at Regional Events...3

Team Advancement. 7.1 Overview Pre-Qualifying Teams Teams Competing at Regional Events...3 7 Team Advancement 7.1 Overview...3 7.2 Pre-Qualifying Teams...3 7.3 Teams Competing at Regional Events...3 7.3.1 Qualifying Awards at Regional Events...3 7.3.2 Winning Alliance at Regional Events...3

More information

EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM

EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM Evolving Hexapod Gaits Using a Cyclic Genetic Algorithm Page 1 of 7 EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM GARY B. PARKER, DAVID W. BRAUN, AND INGO CYLIAX Department of Computer Science

More information

Calculation of Trail Usage from Counter Data

Calculation of Trail Usage from Counter Data 1. Introduction 1 Calculation of Trail Usage from Counter Data 1/17/17 Stephen Martin, Ph.D. Automatic counters are used on trails to measure how many people are using the trail. A fundamental question

More information

Below are the graphing equivalents of the above constraints.

Below are the graphing equivalents of the above constraints. Detailed Step- by- Step description of the Wilson Problem Part A. LP Formulation Step 1. Figure out the problem Although it may seem obvious, the first step in solving the Wilson Problem is to understand

More information

Fail Operational Controls for an Independent Metering Valve

Fail Operational Controls for an Independent Metering Valve Group 14 - System Intergration and Safety Paper 14-3 465 Fail Operational Controls for an Independent Metering Valve Michael Rannow Eaton Corporation, 7945 Wallace Rd., Eden Prairie, MN, 55347, email:

More information

Experimental Characterization and Modeling of Helium Dispersion in a ¼-Scale Two-Car Residential Garage

Experimental Characterization and Modeling of Helium Dispersion in a ¼-Scale Two-Car Residential Garage Experimental Characterization and Modeling of Helium Dispersion in a ¼-Scale Two-Car Residential Garage William M. Pitts, Jiann C. Yang, Kuldeep Prasad, and Marco Fernandez National Institute of Standards

More information

Simulating Major League Baseball Games

Simulating Major League Baseball Games ABSTRACT Paper 2875-2018 Simulating Major League Baseball Games Justin Long, Slippery Rock University; Brad Schweitzer, Slippery Rock University; Christy Crute Ph.D, Slippery Rock University The game of

More information

Title: Modeling Crossing Behavior of Drivers and Pedestrians at Uncontrolled Intersections and Mid-block Crossings

Title: Modeling Crossing Behavior of Drivers and Pedestrians at Uncontrolled Intersections and Mid-block Crossings Title: Modeling Crossing Behavior of Drivers and Pedestrians at Uncontrolled Intersections and Mid-block Crossings Objectives The goal of this study is to advance the state of the art in understanding

More information

STRIP EDGE SHAPE CONTROL

STRIP EDGE SHAPE CONTROL STRIP EDGE SHAPE CONTROL Gary Boulton, Tino Domanti, Terry Gerber, Glen Wallace Industrial Automation Services The control of shape in the strip edge region remains a significant challenge for shape control

More information

Introduction to Pattern Recognition

Introduction to Pattern Recognition Introduction to Pattern Recognition Jason Corso SUNY at Buffalo 12 January 2009 J. Corso (SUNY at Buffalo) Introduction to Pattern Recognition 12 January 2009 1 / 28 Pattern Recognition By Example Example:

More information

On the Challenges of Analysis and Design of Turret-Moored FPSOs in Squalls

On the Challenges of Analysis and Design of Turret-Moored FPSOs in Squalls On the Challenges of Analysis and Design of Turret-Moored FPSOs in Squalls Arun Duggal Amir Izadparast Yu Ding 19th SNAME Offshore Symposium 6 February 2014 Overview Squalls, History & Current Practice

More information

CS145: INTRODUCTION TO DATA MINING

CS145: INTRODUCTION TO DATA MINING CS145: INTRODUCTION TO DATA MINING 3: Vector Data: Logistic Regression Instructor: Yizhou Sun yzsun@cs.ucla.edu October 9, 2017 Methods to Learn Vector Data Set Data Sequence Data Text Data Classification

More information

WESEP 594 Research Seminar

WESEP 594 Research Seminar WESEP 594 Research Seminar Aaron J Rosenberg Department of Aerospace Engineering Iowa State University Major: WESEP Co-major: Aerospace Engineering Motivation Increase Wind Energy Capture Betz limit: 59.3%

More information

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD Outline Definition. Deriving the Estimates. Properties of the Estimates. Units of Measurement and Functional Form. Expected

More information

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held As part of my research in Sebastian Thrun's autonomous driving team, my goal is to predict the wait-time for a car at a 4-way intersection.

More information

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Akshay C. Mahakalkar, Gaurav R. Powale 2, Yogita R. Ashtekar 3, Dinesh L. Mute 4, 2 B.E. 4 th Year Student of Electrical

More information

2 When Some or All Labels are Missing: The EM Algorithm

2 When Some or All Labels are Missing: The EM Algorithm CS769 Spring Advanced Natural Language Processing The EM Algorithm Lecturer: Xiaojin Zhu jerryzhu@cs.wisc.edu Given labeled examples (x, y ),..., (x l, y l ), one can build a classifier. If in addition

More information