Tutorial PCET Polynomial Chaos Expansion Toolbox. Stefan Streif Felix Petzke Ali Mesbah

Size: px
Start display at page:

Download "Tutorial PCET Polynomial Chaos Expansion Toolbox. Stefan Streif Felix Petzke Ali Mesbah"

Transcription

1 Tutorial PCET Polynomial Chaos Expansion Toolbox Stefan Streif Felix Petzke Ali Mesbah

2 PCET Overview What s PCET? MATLAB based toolbox for uncertainty quantification using the polynomial chaos expansion (PCE) simple syntax for definition of models, uncertainties, general purpose code and mid-level functions free for academic purposes: Possible applications and problem setup systems: continuous- or discrete-time systems with uncertain initial conditions, parameters and inputs and outputs problems and applications: stochastic MPC, stochastic active FDI, experiment-design, parameter and state estimation, uncertainty quantification, Aims of this tutorial? explain main concepts and typical work flow at simple example 2

3 Outline 1. Quick guide 2. Typical workflow illustrated at a simple example 3. Examples overview 4. References 3

4 Quick guide installation, files, folders, documentation Installation Unpack ZIP-file into current MATLAB folder and run installpcet generates documentation, sets paths, checks dependencies, Files and folders main files (starting with PCET ) in main folder auxiliary files in subfolders (shouldn t be used directly) examples in folders./pcet/examples/ex Help and documentation For short introduction to syntax etc. type help PCET For further and more detailed information on different functions, extended functionality, please see examples, help browser or type e.g.: help PCETcompose doc PCETcompose Please contact Stefan.Streif@etit.TU-Chemnitz.de if you need further help. 4

5 problem specific Stefan Streif TU Chemnitz PCET Tutorial initialization Typical workflow 1. Define dynamical system and uncertainties, inputs, 2. Compose the PCE-system 3. Write files for simulation 4. Set options for simulation, integration, 5. Simulate PCE-system or perform MC simulations 6. Visualize or analyze results 7. Modify inputs, uncertainties of parameters and initial cond. 5

6 Define system, inputs, uncertainties, 1. Define dynamical system and uncertainties, inputs, Example ODE: Implementation: states(1).name = 'x'; states(1).dist = 'uniform'; states(1).data = [ ]; states(1).rhs = 'a*x + u'; parameters(1).name = 'a'; parameters(1).dist = 'normal'; parameters(1).data = [-5 0.1]; outputs(1).name = 'y'; outputs(1).rhs = '3*x^2'; inputs(1).name = 'u'; inputs(1).rhs = 'piecewise(ut,uv,t)'; inputs(1).ut = 1; % time of step inputs(1).uv = 1; % height of step state parameter output input (here piecewise constant) 6

7 Compose and export problem 2. Compose the PCE-system PCE is performed for the specified system, uncertainties, sys = PCETcompose(states,parameters,... inputs,outputs,pce_order) may take a long time depending on the number of uncertainties and PCE order returns: structure sys that will be used by subsequent functions 3. Write files for simulation r.h.s. of continuous or discrete-time dynamics (PCE-system or Monte-Carlo) and of output equations have to written to files (used later by simulation functions etc.) PCETwriteFiles(sys,'ex1_ODE.m','ex1_OUT.m',... r.h.s. of PCE system (for simulation) r.h.s of PCE output equations 'ex1_mcode.m','ex1_mcout.m') r.h.s. of MC system (for simulation) r.h.s of MC output equations 7

8 Set options and update of uncertainties 4. Set options for simulation, integration, simoptions.tspan = [0 3]; simoptions.dt = 0.05; Continuous-time: simoptions.setup = odeset; simoptions.solver = ode15s'; Discrete-time: simoptions.solver = discrete-time'; set simulation interval set time step-size for (simulation and/or evaluation set integrator options choose integrator choose discrete-time simulation Optional and possibly at a later time-point: 7. Update/modify uncertainties of initial conditions or parameter sys = PCETupdate(sys, x',[ ], a',[-6 0.1]); update data (see step 1) of variables x and a 8

9 Simulation 5a. Simulate PCE system (and output equations) using Galerkin projection PCEresults =... PCETsimGalerkin(sys,'ex1_ODE','ex1_OUT',simoptions) and/or: 5b.Simulate PCE system (and output equations) using collocation samples_col = PCETsample(sys,'basis',col_samples) PCEresults =... PCETsimCollocation(sys,'ex1_MCODE',... 'ex1_mcout',samples_col,simoptions) draws col_samples samples, evaluates basis polyn. and uses collocation and/or: 5c. Monte-Carlo simulation (states and output equations) samples = PCETsample(sys,'variables',mc_samples) MCresults =... PCETsimMonteCarlo(sys,'ex1_MCODE','ex1_MCOUT',... samples,simoptions) draws mc_samples samples, evaluates uncert. and simulates system PCEresults/MCresults contain all simulation data which can be processed and analyzed further 9

10 Visualize and analyze results 6a. Moments MomMats = PCETmomentMatrices(sys,4) compute moment matrices (up to 4 th order) need not to recomputed (can be stored for repeated use) PCEresults.y.moments =... PCETcalcMoments(sys,MomMats,results.y.pcvals) use MATLAB function plot to display moments stored in PCEresults.y.moments and/or: 6b.Histogram samples_basis = PCETsample(sys,'basis',n_samples) draws n_samples samples and evaluates basis polynomials samples_y = samples_basis' * PCEresults.y.pcvals use MATLAB functions for histogram plots (e.g. histc) 10

11 Quick guide examples ex1_continuous_simulation uncertainty quantification for a nonlinear system plotting of moments, histograms, ex2_lti_systems uncertainty quantification for a linear system specification of system dynamics in matrix form ex3_discrete_simulation uncertainty quantification for a discrete-time nonlinear system ex4_fault_detection input design for active fault detection for a two-tank-system distribution dissimilarity measure embedding uncertainty quantification into an nonlinear optimization scheme ex5_model_discrimination input design for model discrimination for biochemical reaction networks [Mesbah et al. (2014)] [Streif et al. (2014)] ex6_snmpc [Mesbah et al. (2014)] stochastic nonlinear model predictive control for a crystallization process chance constraints 11

12 Selected PCE applications/publications J. A. Paulson, S. Streif, and A. Mesbah. Stability for receding-horizon stochastic model predictive control. In Proc. American Control Conference (ACC), Chicago, IL, July J. A. Paulson, A. Mesbah, S. Streif, R. Findeisen, and R. D. Braatz. Fast stochastic model predictive control of high-dimensional systems. In Proc. 53rd IEEE Conference on Decision and Control (CDC), Los Angeles, CA, December A. Mesbah, S. Streif, R. Findeisen, and R. D. Braatz. Stochastic nonlinear model predictive control with probabilistic constraints. In Proc. American Control Conference (ACC), Portland, Oregon, June A. Mesbah, S. Streif, R. Findeisen, and R. D. Braatz. Active fault diagnosis for nonlinear systems with probabilistic uncertainties. In Proc. 19th IFAC World Congress, Cape Town, South Africa, S. Streif, F. Petzke, A. Mesbah, R. Findeisen, and R. D. Braatz. Optimal experimental design for probabilistic model discrimination using polynomial chaos. In Proc. 19th IFAC World Congress, Cape Town, South Africa, S. Streif, M. Karl, and A. Mesbah. Stochastic nonlinear model predictive control with efficient sample approximation of chance constraints. arxiv: A. Mesbah and S. Streif. A probabilistic approach to robust optimal experiment design with chance constraints. In. Proc. International Symposium on Advanced Control of Chemical Processes (ADCHEM), Whistler, Canada, source codes available, see examples! 12

PERSPECTIVES ON STOCHASTIC PREDICTIVE CONTROL WITH AUTONOMOUS MODEL ADAPTATION FOR MODEL STRUCTURE UNCERTAINTY

PERSPECTIVES ON STOCHASTIC PREDICTIVE CONTROL WITH AUTONOMOUS MODEL ADAPTATION FOR MODEL STRUCTURE UNCERTAINTY PERSPECTIVES ON STOCHASTIC PREDICTIVE CONTROL WITH AUTONOMOUS MODEL ADAPTATION FOR MODEL STRUCTURE UNCERTAINTY Tor Aksel N. Heirung and Ali Mesbah Department of Chemical and Biomolecular Engineering, University

More information

arxiv: v1 [cs.sy] 11 Nov 2014

arxiv: v1 [cs.sy] 11 Nov 2014 arxiv:1411.2683v1 [cs.sy] 11 Nov 214 A Probabilistic Approach to Robust Optimal Experiment Design with Chance Constraints Ali Mesbah Stefan Streif Department of Chemical and Biomolecular Engineering, University

More information

Stochastic MPC Design for a Two-Component Granulation Process

Stochastic MPC Design for a Two-Component Granulation Process preprint version of published paper: N. Hashemian and A. Armaou. Stochastic MPC Design for a Two-Component Granulation Process, American Control Conference (ACC), pp. 3-391, 17. Stochastic MPC Design for

More information

Probabilistic and Set-based Model Invalidation and Estimation Using LMIs

Probabilistic and Set-based Model Invalidation and Estimation Using LMIs Preprints of the 19th World Congress The International Federation of Automatic Control Probabilistic and Set-based Model Invalidation and Estimation Using LMIs Stefan Streif Didier Henrion Rolf Findeisen

More information

Employing Model Reduction for Uncertainty Visualization in the Context of CO 2 Storage Simulation

Employing Model Reduction for Uncertainty Visualization in the Context of CO 2 Storage Simulation Employing Model Reduction for Uncertainty Visualization in the Context of CO 2 Storage Simulation Marcel Hlawatsch, Sergey Oladyshkin, Daniel Weiskopf University of Stuttgart Problem setting - underground

More information

Active Fault Diagnosis for Uncertain Systems

Active Fault Diagnosis for Uncertain Systems Active Fault Diagnosis for Uncertain Systems Davide M. Raimondo 1 Joseph K. Scott 2, Richard D. Braatz 2, Roberto Marseglia 1, Lalo Magni 1, Rolf Findeisen 3 1 Identification and Control of Dynamic Systems

More information

Robust Nonlinear Model Predictive Control with Constraint Satisfaction: A Relaxation-based Approach

Robust Nonlinear Model Predictive Control with Constraint Satisfaction: A Relaxation-based Approach Proceedings of the 9th World Congress he International Federation of Automatic Control Robust Nonlinear Model Predictive Control with Constraint Satisfaction: A Relaxation-based Approach Stefan Streif

More information

UNCERTAINTY is inherent to many applications. Considering

UNCERTAINTY is inherent to many applications. Considering Comments on Truncation Errors for Polynomial Chaos Expansions Tillmann Mühlpfordt, a, Rolf Findeisen, b, Veit Hagenmeyer, a, Timm Faulwasser a, arxiv:1708.07655v2 [cs.sy] 27 Nov 2017 Abstract Methods based

More information

Enabling Advanced Automation Tools to manage Trajectory Prediction Uncertainty

Enabling Advanced Automation Tools to manage Trajectory Prediction Uncertainty Engineering, Test & Technology Boeing Research & Technology Enabling Advanced Automation Tools to manage Trajectory Prediction Uncertainty ART 12 - Automation Enrique Casado (BR&T-E) enrique.casado@boeing.com

More information

Estimating functional uncertainty using polynomial chaos and adjoint equations

Estimating functional uncertainty using polynomial chaos and adjoint equations 0. Estimating functional uncertainty using polynomial chaos and adjoint equations February 24, 2011 1 Florida State University, Tallahassee, Florida, Usa 2 Moscow Institute of Physics and Technology, Moscow,

More information

Stochastic Nonlinear Model Predictive Control with Probabilistic Constraints

Stochastic Nonlinear Model Predictive Control with Probabilistic Constraints 14 American Control Conference (ACC June 4-6, 14. Portland, Oregon, USA Stochastic Nonlinear Model Predictive Control with Probabilistic Constraints Ali Mesbah 1, Stefan Streif 1,2, Rolf Findeisen 2, and

More information

A Stochastic Collocation based. for Data Assimilation

A Stochastic Collocation based. for Data Assimilation A Stochastic Collocation based Kalman Filter (SCKF) for Data Assimilation Lingzao Zeng and Dongxiao Zhang University of Southern California August 11, 2009 Los Angeles Outline Introduction SCKF Algorithm

More information

Modelling Under Risk and Uncertainty

Modelling Under Risk and Uncertainty Modelling Under Risk and Uncertainty An Introduction to Statistical, Phenomenological and Computational Methods Etienne de Rocquigny Ecole Centrale Paris, Universite Paris-Saclay, France WILEY A John Wiley

More information

Predici 11 Quick Overview

Predici 11 Quick Overview Predici 11 Quick Overview PREDICI is the leading simulation package for kinetic, process and property modeling with a major emphasis on macromolecular systems. It has been successfully utilized to model

More information

Uncertainty Propagation and Global Sensitivity Analysis in Hybrid Simulation using Polynomial Chaos Expansion

Uncertainty Propagation and Global Sensitivity Analysis in Hybrid Simulation using Polynomial Chaos Expansion Uncertainty Propagation and Global Sensitivity Analysis in Hybrid Simulation using Polynomial Chaos Expansion EU-US-Asia workshop on hybrid testing Ispra, 5-6 October 2015 G. Abbiati, S. Marelli, O.S.

More information

Overview. Bayesian assimilation of experimental data into simulation (for Goland wing flutter) Why not uncertainty quantification?

Overview. Bayesian assimilation of experimental data into simulation (for Goland wing flutter) Why not uncertainty quantification? Delft University of Technology Overview Bayesian assimilation of experimental data into simulation (for Goland wing flutter), Simao Marques 1. Why not uncertainty quantification? 2. Why uncertainty quantification?

More information

A Polynomial Chaos Approach to Robust Multiobjective Optimization

A Polynomial Chaos Approach to Robust Multiobjective Optimization A Polynomial Chaos Approach to Robust Multiobjective Optimization Silvia Poles 1, Alberto Lovison 2 1 EnginSoft S.p.A., Optimization Consulting Via Giambellino, 7 35129 Padova, Italy s.poles@enginsoft.it

More information

Stochastic structural dynamic analysis with random damping parameters

Stochastic structural dynamic analysis with random damping parameters Stochastic structural dynamic analysis with random damping parameters K. Sepahvand 1, F. Saati Khosroshahi, C. A. Geweth and S. Marburg Chair of Vibroacoustics of Vehicles and Machines Department of Mechanical

More information

Constrained State Estimation Using the Unscented Kalman Filter

Constrained State Estimation Using the Unscented Kalman Filter 16th Mediterranean Conference on Control and Automation Congress Centre, Ajaccio, France June 25-27, 28 Constrained State Estimation Using the Unscented Kalman Filter Rambabu Kandepu, Lars Imsland and

More information

At A Glance. UQ16 Mobile App.

At A Glance. UQ16 Mobile App. At A Glance UQ16 Mobile App Scan the QR code with any QR reader and download the TripBuilder EventMobile app to your iphone, ipad, itouch or Android mobile device. To access the app or the HTML 5 version,

More information

Unknown Input Observer Based Detection of Sensor Faults in a Wind Turbine

Unknown Input Observer Based Detection of Sensor Faults in a Wind Turbine Unknown Input Observer Based Detection of Sensor Faults in a Wind Turbine Peter F Odgaard, Member, IEEE and Jakob Stoustrup, Senior Member IEEE Abstract in this paper an unknown input observer is designed

More information

Risk Assessment for CO 2 Sequestration- Uncertainty Quantification based on Surrogate Models of Detailed Simulations

Risk Assessment for CO 2 Sequestration- Uncertainty Quantification based on Surrogate Models of Detailed Simulations Risk Assessment for CO 2 Sequestration- Uncertainty Quantification based on Surrogate Models of Detailed Simulations Yan Zhang Advisor: Nick Sahinidis Department of Chemical Engineering Carnegie Mellon

More information

NON-LINEAR APPROXIMATION OF BAYESIAN UPDATE

NON-LINEAR APPROXIMATION OF BAYESIAN UPDATE tifica NON-LINEAR APPROXIMATION OF BAYESIAN UPDATE Alexander Litvinenko 1, Hermann G. Matthies 2, Elmar Zander 2 http://sri-uq.kaust.edu.sa/ 1 Extreme Computing Research Center, KAUST, 2 Institute of Scientific

More information

INTRODUCTION TO TRANSFER FUNCTIONS

INTRODUCTION TO TRANSFER FUNCTIONS INTRODUCTION TO TRANSFER FUNCTIONS The transfer function is the ratio of the output Laplace Transform to the input Laplace Transform assuming zero initial conditions. Many important characteristics of

More information

EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES

EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES 9 th ASCE Specialty Conference on Probabilistic Mechanics and Structural Reliability EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES Nam H. Kim and Haoyu Wang University

More information

Lecture 1. Scott Pauls 1 3/28/07. Dartmouth College. Math 23, Spring Scott Pauls. Administrivia. Today s material.

Lecture 1. Scott Pauls 1 3/28/07. Dartmouth College. Math 23, Spring Scott Pauls. Administrivia. Today s material. Lecture 1 1 1 Department of Mathematics Dartmouth College 3/28/07 Outline Course Overview http://www.math.dartmouth.edu/~m23s07 Matlab Ordinary differential equations Definition An ordinary differential

More information

Polynomial chaos expansions for sensitivity analysis

Polynomial chaos expansions for sensitivity analysis c DEPARTMENT OF CIVIL, ENVIRONMENTAL AND GEOMATIC ENGINEERING CHAIR OF RISK, SAFETY & UNCERTAINTY QUANTIFICATION Polynomial chaos expansions for sensitivity analysis B. Sudret Chair of Risk, Safety & Uncertainty

More information

Introduction to Computational Stochastic Differential Equations

Introduction to Computational Stochastic Differential Equations Introduction to Computational Stochastic Differential Equations Gabriel J. Lord Catherine E. Powell Tony Shardlow Preface Techniques for solving many of the differential equations traditionally used by

More information

Parameter iden+fica+on with hybrid systems in a bounded- error framework

Parameter iden+fica+on with hybrid systems in a bounded- error framework Parameter iden+fica+on with hybrid systems in a bounded- error framework Moussa MAIGA, Nacim RAMDANI, & Louise TRAVE- MASSUYES Université d Orléans, Bourges, and LAAS CNRS Toulouse, France.!! SWIM 2015,

More information

Uncertainty Quantification and Validation Using RAVEN. A. Alfonsi, C. Rabiti. Risk-Informed Safety Margin Characterization. https://lwrs.inl.

Uncertainty Quantification and Validation Using RAVEN. A. Alfonsi, C. Rabiti. Risk-Informed Safety Margin Characterization. https://lwrs.inl. Risk-Informed Safety Margin Characterization Uncertainty Quantification and Validation Using RAVEN https://lwrs.inl.gov A. Alfonsi, C. Rabiti North Carolina State University, Raleigh 06/28/2017 Assumptions

More information

Uncertainty Analysis of the Harmonoise Road Source Emission Levels

Uncertainty Analysis of the Harmonoise Road Source Emission Levels Uncertainty Analysis of the Harmonoise Road Source Emission Levels James Trow Software and Mapping Department, Hepworth Acoustics Limited, 5 Bankside, Crosfield Street, Warrington, WA UP, United Kingdom

More information

Hyperbolic Polynomial Chaos Expansion (HPCE) and its Application to Statistical Analysis of Nonlinear Circuits

Hyperbolic Polynomial Chaos Expansion (HPCE) and its Application to Statistical Analysis of Nonlinear Circuits Hyperbolic Polynomial Chaos Expansion HPCE and its Application to Statistical Analysis of Nonlinear Circuits Majid Ahadi, Aditi Krishna Prasad, Sourajeet Roy High Speed System Simulations Laboratory Department

More information

Salinity Calibration fit with Matlab

Salinity Calibration fit with Matlab Salinity Calibration fit with Matlab ME 121 Notes Gerald Recktenwald Portland State University Department of Mechanical Engineering gerry@pdx.edu ME 121: Salinity calibration fit Overview These slides

More information

Probabilistic Collocation Method for Uncertainty Analysis of Soil Infiltration in Flood Modelling

Probabilistic Collocation Method for Uncertainty Analysis of Soil Infiltration in Flood Modelling Probabilistic Collocation Method for Uncertainty Analysis of Soil Infiltration in Flood Modelling Y. Huang 1,2, and X.S. Qin 1,2* 1 School of Civil & Environmental Engineering, Nanyang Technological University,

More information

Random Eigenvalue Problems in Structural Dynamics: An Experimental Investigation

Random Eigenvalue Problems in Structural Dynamics: An Experimental Investigation Random Eigenvalue Problems in Structural Dynamics: An Experimental Investigation S. Adhikari, A. Srikantha Phani and D. A. Pape School of Engineering, Swansea University, Swansea, UK Email: S.Adhikari@swansea.ac.uk

More information

Verteilte modellprädiktive Regelung intelligenter Stromnetze

Verteilte modellprädiktive Regelung intelligenter Stromnetze Verteilte modellprädiktive Regelung intelligenter Stromnetze Institut für Mathematik Technische Universität Ilmenau in Zusammenarbeit mit Philipp Braun, Lars Grüne (U Bayreuth) und Christopher M. Kellett,

More information

Learning Static Parameters in Stochastic Processes

Learning Static Parameters in Stochastic Processes Learning Static Parameters in Stochastic Processes Bharath Ramsundar December 14, 2012 1 Introduction Consider a Markovian stochastic process X T evolving (perhaps nonlinearly) over time variable T. We

More information

Temporal-Difference Q-learning in Active Fault Diagnosis

Temporal-Difference Q-learning in Active Fault Diagnosis Temporal-Difference Q-learning in Active Fault Diagnosis Jan Škach 1 Ivo Punčochář 1 Frank L. Lewis 2 1 Identification and Decision Making Research Group (IDM) European Centre of Excellence - NTIS University

More information

New Advances in Uncertainty Analysis and Estimation

New Advances in Uncertainty Analysis and Estimation New Advances in Uncertainty Analysis and Estimation Overview: Both sensor observation data and mathematical models are used to assist in the understanding of physical dynamic systems. However, observational

More information

Auxiliary signal design for failure detection in uncertain systems

Auxiliary signal design for failure detection in uncertain systems Auxiliary signal design for failure detection in uncertain systems R. Nikoukhah, S. L. Campbell and F. Delebecque Abstract An auxiliary signal is an input signal that enhances the identifiability of a

More information

. Frobenius-Perron Operator ACC Workshop on Uncertainty Analysis & Estimation. Raktim Bhattacharya

. Frobenius-Perron Operator ACC Workshop on Uncertainty Analysis & Estimation. Raktim Bhattacharya .. Frobenius-Perron Operator 2014 ACC Workshop on Uncertainty Analysis & Estimation Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University. uq.tamu.edu

More information

Set-based State of Charge Estimation for Lithium-ion Batteries

Set-based State of Charge Estimation for Lithium-ion Batteries 214 American Control Conference (ACC June 4-6, 214. Portland, Oregon, USA Set-based State of Charge Estimation for thium-ion Batteries Matthias Rausch 1,2, Reinhardt Klein 1,3, Stefan Streif 1, Christian

More information

OPTIMAL POWER FLOW (OPF) is a tool that has been

OPTIMAL POWER FLOW (OPF) is a tool that has been IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 2, MAY 2005 773 Cumulant-Based Probabilistic Optimal Power Flow (P-OPF) With Gaussian and Gamma Distributions Antony Schellenberg, William Rosehart, and

More information

MOST control systems are designed under the assumption

MOST control systems are designed under the assumption 2076 IEEE TRANSACTIONS ON AUTOMATIC CONTROL, VOL. 53, NO. 9, OCTOBER 2008 Lyapunov-Based Model Predictive Control of Nonlinear Systems Subject to Data Losses David Muñoz de la Peña and Panagiotis D. Christofides

More information

A Spectral Approach to Linear Bayesian Updating

A Spectral Approach to Linear Bayesian Updating A Spectral Approach to Linear Bayesian Updating Oliver Pajonk 1,2, Bojana V. Rosic 1, Alexander Litvinenko 1, and Hermann G. Matthies 1 1 Institute of Scientific Computing, TU Braunschweig, Germany 2 SPT

More information

Designing a Quilt with GIMP 2011

Designing a Quilt with GIMP 2011 Planning your quilt and want to see what it will look like in the fabric you just got from your LQS? You don t need to purchase a super expensive program. Try this and the best part it s FREE!!! *** Please

More information

SENSITIVITY ANALYSIS IN NUMERICAL SIMULATION OF MULTIPHASE FLOW FOR CO 2 STORAGE IN SALINE AQUIFERS USING THE PROBABILISTIC COLLOCATION APPROACH

SENSITIVITY ANALYSIS IN NUMERICAL SIMULATION OF MULTIPHASE FLOW FOR CO 2 STORAGE IN SALINE AQUIFERS USING THE PROBABILISTIC COLLOCATION APPROACH XIX International Conference on Water Resources CMWR 2012 University of Illinois at Urbana-Champaign June 17-22,2012 SENSITIVITY ANALYSIS IN NUMERICAL SIMULATION OF MULTIPHASE FLOW FOR CO 2 STORAGE IN

More information

Cooperative State Estimation for Mobile Sensors with Optimal Path Planning

Cooperative State Estimation for Mobile Sensors with Optimal Path Planning Optimal Control/Fall 2008 1 Cooperative State Estimation for Mobile Sensors with Optimal Path Planning Hossein Hajimirsadeghi Abstract This paper studies an optimal control problem of maximizing quality

More information

Uncertainty Quantification in Computational Science

Uncertainty Quantification in Computational Science DTU 2010 - Lecture I Uncertainty Quantification in Computational Science Jan S Hesthaven Brown University Jan.Hesthaven@Brown.edu Objective of lectures The main objective of these lectures are To offer

More information

Structural reliability analysis of deep excavations

Structural reliability analysis of deep excavations Timo Schweckendiek, TU Delft, Wim Courage, TNO Built Environment and Geosciences Introduction The Finite Element Method is nowadays widely used in structural design, both for the Servicebility Limit State

More information

Sampling and low-rank tensor approximation of the response surface

Sampling and low-rank tensor approximation of the response surface Sampling and low-rank tensor approximation of the response surface tifica Alexander Litvinenko 1,2 (joint work with Hermann G. Matthies 3 ) 1 Group of Raul Tempone, SRI UQ, and 2 Group of David Keyes,

More information

Fast Numerical Methods for Stochastic Computations

Fast Numerical Methods for Stochastic Computations Fast AreviewbyDongbinXiu May 16 th,2013 Outline Motivation 1 Motivation 2 3 4 5 Example: Burgers Equation Let us consider the Burger s equation: u t + uu x = νu xx, x [ 1, 1] u( 1) =1 u(1) = 1 Example:

More information

Safety Envelope for Load Tolerance and Its Application to Fatigue Reliability Design

Safety Envelope for Load Tolerance and Its Application to Fatigue Reliability Design Safety Envelope for Load Tolerance and Its Application to Fatigue Reliability Design Haoyu Wang * and Nam H. Kim University of Florida, Gainesville, FL 32611 Yoon-Jun Kim Caterpillar Inc., Peoria, IL 61656

More information

CSC321 Lecture 2: Linear Regression

CSC321 Lecture 2: Linear Regression CSC32 Lecture 2: Linear Regression Roger Grosse Roger Grosse CSC32 Lecture 2: Linear Regression / 26 Overview First learning algorithm of the course: linear regression Task: predict scalar-valued targets,

More information

Random Vibrations & Failure Analysis Sayan Gupta Indian Institute of Technology Madras

Random Vibrations & Failure Analysis Sayan Gupta Indian Institute of Technology Madras Random Vibrations & Failure Analysis Sayan Gupta Indian Institute of Technology Madras Lecture 1: Introduction Course Objectives: The focus of this course is on gaining understanding on how to make an

More information

Graphical User Interface for Design Stabilizing Controllers

Graphical User Interface for Design Stabilizing Controllers Graphical User Interface for Design Stabilizing Controllers Petr Urban 1,2, Michael Šebek1 1 Department of Control Engineering, Faculty of Electrical Engineering, Czech Technical University, Prague 2 Institute

More information

Organization. I MCMC discussion. I project talks. I Lecture.

Organization. I MCMC discussion. I project talks. I Lecture. Organization I MCMC discussion I project talks. I Lecture. Content I Uncertainty Propagation Overview I Forward-Backward with an Ensemble I Model Reduction (Intro) Uncertainty Propagation in Causal Systems

More information

Input-output data sets for development and benchmarking in nonlinear identification

Input-output data sets for development and benchmarking in nonlinear identification Input-output data sets for development and benchmarking in nonlinear identification Torbjörn Wigren Division of Systems and Control, Department of Information Technology, Uppsala University, PO box 337,

More information

Minimum Entropy Control For Time-Varying Systems (Systems & Control: Foundations & Applications) By Marc A. Peters READ ONLINE

Minimum Entropy Control For Time-Varying Systems (Systems & Control: Foundations & Applications) By Marc A. Peters READ ONLINE Minimum Entropy Control For Time-Varying Systems (Systems & Control: Foundations & Applications) By Marc A. Peters READ ONLINE If you are searching for a ebook by Marc A. Peters Minimum Entropy Control

More information

Set-based adaptive estimation for a class of nonlinear systems with time-varying parameters

Set-based adaptive estimation for a class of nonlinear systems with time-varying parameters Preprints of the 8th IFAC Symposium on Advanced Control of Chemical Processes The International Federation of Automatic Control Furama Riverfront, Singapore, July -3, Set-based adaptive estimation for

More information

A reduced-order stochastic finite element analysis for structures with uncertainties

A reduced-order stochastic finite element analysis for structures with uncertainties A reduced-order stochastic finite element analysis for structures with uncertainties Ji Yang 1, Béatrice Faverjon 1,2, Herwig Peters 1, icole Kessissoglou 1 1 School of Mechanical and Manufacturing Engineering,

More information

The Joint Spectral Radius: Theory And Applications (Lecture Notes In Control And Information Sciences) By Raphaël Jungers

The Joint Spectral Radius: Theory And Applications (Lecture Notes In Control And Information Sciences) By Raphaël Jungers The Joint Spectral Radius: Theory And Applications (Lecture Notes In Control And Information Sciences) By Raphaël Jungers If searched for the book The Joint Spectral Radius: Theory and Applications (Lecture

More information

ROBOTICS 01PEEQW. Basilio Bona DAUIN Politecnico di Torino

ROBOTICS 01PEEQW. Basilio Bona DAUIN Politecnico di Torino ROBOTICS 01PEEQW Basilio Bona DAUIN Politecnico di Torino Probabilistic Fundamentals in Robotics Gaussian Filters Course Outline Basic mathematical framework Probabilistic models of mobile robots Mobile

More information

ADCHEM International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 2006

ADCHEM International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 2006 ADCHEM 26 International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 26 CHALLENGES OF MODELLING A POPULATION BALANCE USING WAVELET Johan Utomo, Nicoleta Balliu, Moses

More information

Coastal Hazards System: Interpretation and Application

Coastal Hazards System: Interpretation and Application Lessons Learned and Best Practices: Resilience of Coastal Infrastructure Hato Rey, PR March 8-9, 2017 Coastal Hazards System: Interpretation and Application Victor M. Gonzalez, P.E. Team: PI: Jeffrey A.

More information

Batch-to-batch strategies for cooling crystallization

Batch-to-batch strategies for cooling crystallization Batch-to-batch strategies for cooling crystallization Marco Forgione 1, Ali Mesbah 1, Xavier Bombois 1, Paul Van den Hof 2 1 Delft University of echnology Delft Center for Systems and Control 2 Eindhoven

More information

Kinematic Analysis and Inverse Dynamics-based Control of Nondeterministic Multibody Systems

Kinematic Analysis and Inverse Dynamics-based Control of Nondeterministic Multibody Systems Kinematic Analysis and Inverse Dynamics-based Control of Nondeterministic Multibody Systems Item Type text; Electronic Thesis Authors Sabet, Sahand Publisher The University of Arizona. Rights Copyright

More information

Optimization based robust control

Optimization based robust control Optimization based robust control Didier Henrion 1,2 Draft of March 27, 2014 Prepared for possible inclusion into The Encyclopedia of Systems and Control edited by John Baillieul and Tariq Samad and published

More information

Robust Fault Diagnosis of Uncertain One-dimensional Wave Equations

Robust Fault Diagnosis of Uncertain One-dimensional Wave Equations Robust Fault Diagnosis of Uncertain One-dimensional Wave Equations Satadru Dey 1 and Scott J. Moura Abstract Unlike its Ordinary Differential Equation ODE counterpart, fault diagnosis of Partial Differential

More information

Model (In)validation and Fault Detection for Systems with Polynomial State-Space Models

Model (In)validation and Fault Detection for Systems with Polynomial State-Space Models Model (In)validation and Fault Detection for Systems with Polynomial State-Space Models Farshad Harirchi, Zheng Luo, Necmiye Ozay Abstract This paper addresses the problem of (in)validation of polynomial

More information

Reliable Condition Assessment of Structures Using Uncertain or Limited Field Modal Data

Reliable Condition Assessment of Structures Using Uncertain or Limited Field Modal Data Reliable Condition Assessment of Structures Using Uncertain or Limited Field Modal Data Mojtaba Dirbaz Mehdi Modares Jamshid Mohammadi 6 th International Workshop on Reliable Engineering Computing 1 Motivation

More information

Solving the steady state diffusion equation with uncertainty Final Presentation

Solving the steady state diffusion equation with uncertainty Final Presentation Solving the steady state diffusion equation with uncertainty Final Presentation Virginia Forstall vhfors@gmail.com Advisor: Howard Elman elman@cs.umd.edu Department of Computer Science May 6, 2012 Problem

More information

Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob

Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob Aalborg Universitet Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob Published in: Elsevier IFAC Publications / IFAC Proceedings

More information

Reaxys Medicinal Chemistry Fact Sheet

Reaxys Medicinal Chemistry Fact Sheet R&D SOLUTIONS FOR PHARMA & LIFE SCIENCES Reaxys Medicinal Chemistry Fact Sheet Essential data for lead identification and optimization Reaxys Medicinal Chemistry empowers early discovery in drug development

More information

Partially Observable Markov Decision Processes (POMDPs)

Partially Observable Markov Decision Processes (POMDPs) Partially Observable Markov Decision Processes (POMDPs) Sachin Patil Guest Lecture: CS287 Advanced Robotics Slides adapted from Pieter Abbeel, Alex Lee Outline Introduction to POMDPs Locally Optimal Solutions

More information

Multilevel stochastic collocations with dimensionality reduction

Multilevel stochastic collocations with dimensionality reduction Multilevel stochastic collocations with dimensionality reduction Ionut Farcas TUM, Chair of Scientific Computing in Computer Science (I5) 27.01.2017 Outline 1 Motivation 2 Theoretical background Uncertainty

More information

Stochastic Collocation Methods for Polynomial Chaos: Analysis and Applications

Stochastic Collocation Methods for Polynomial Chaos: Analysis and Applications Stochastic Collocation Methods for Polynomial Chaos: Analysis and Applications Dongbin Xiu Department of Mathematics, Purdue University Support: AFOSR FA955-8-1-353 (Computational Math) SF CAREER DMS-64535

More information

Robust Model Predictive Control for Autonomous Vehicle/Self-Driving Cars

Robust Model Predictive Control for Autonomous Vehicle/Self-Driving Cars Robust Model Predictive Control for Autonomous Vehicle/Self-Driving Cars Che Kun Law, Darshit Dalal, Stephen Shearrow A robust Model Predictive Control (MPC) approach for controlling front steering of

More information

On the application of different numerical methods to obtain null-spaces of polynomial matrices. Part 1: block Toeplitz algorithms.

On the application of different numerical methods to obtain null-spaces of polynomial matrices. Part 1: block Toeplitz algorithms. On the application of different numerical methods to obtain null-spaces of polynomial matrices. Part 1: block Toeplitz algorithms. J.C. Zúñiga and D. Henrion Abstract Four different algorithms are designed

More information

Advanced Adaptive Control for Unintended System Behavior

Advanced Adaptive Control for Unintended System Behavior Advanced Adaptive Control for Unintended System Behavior Dr. Chengyu Cao Mechanical Engineering University of Connecticut ccao@engr.uconn.edu jtang@engr.uconn.edu Outline Part I: Challenges: Unintended

More information

Experiment 1: Linear Regression

Experiment 1: Linear Regression Experiment 1: Linear Regression August 27, 2018 1 Description This first exercise will give you practice with linear regression. These exercises have been extensively tested with Matlab, but they should

More information

Modular Bayesian uncertainty assessment for Structural Health Monitoring

Modular Bayesian uncertainty assessment for Structural Health Monitoring uncertainty assessment for Structural Health Monitoring Warwick Centre for Predictive Modelling André Jesus a.jesus@warwick.ac.uk June 26, 2017 Thesis advisor: Irwanda Laory & Peter Brommer Structural

More information

RESEARCH SUMMARY ASHKAN JASOUR. February 2016

RESEARCH SUMMARY ASHKAN JASOUR. February 2016 RESEARCH SUMMARY ASHKAN JASOUR February 2016 My background is in systems control engineering and I am interested in optimization, control and analysis of dynamical systems, robotics, machine learning,

More information

FPGA Implementation of a Predictive Controller

FPGA Implementation of a Predictive Controller FPGA Implementation of a Predictive Controller SIAM Conference on Optimization 2011, Darmstadt, Germany Minisymposium on embedded optimization Juan L. Jerez, George A. Constantinides and Eric C. Kerrigan

More information

Appendix A Solving Linear Matrix Inequality (LMI) Problems

Appendix A Solving Linear Matrix Inequality (LMI) Problems Appendix A Solving Linear Matrix Inequality (LMI) Problems In this section, we present a brief introduction about linear matrix inequalities which have been used extensively to solve the FDI problems described

More information

Identification of a Chemical Process for Fault Detection Application

Identification of a Chemical Process for Fault Detection Application Identification of a Chemical Process for Fault Detection Application Silvio Simani Abstract The paper presents the application results concerning the fault detection of a dynamic process using linear system

More information

Robust Actuator Fault Detection and Isolation in a Multi-Area Interconnected Power System

Robust Actuator Fault Detection and Isolation in a Multi-Area Interconnected Power System Proceedings of the World Congress on Engineering 2011 Vol II, July 6-8, 2011, London, U.K. Robust Actuator Fault Detection and Isolation in a Multi-Area Interconnected Power System Istemihan Genc, and

More information

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6 Winmostar tutorial LAMMPS Polymer modeling V7.021 X-Ability Co,. Ltd. question@winmostar.com 2017/7/6 Contents Configure I. Register a monomer II. Define a polymer III. Build a simulation cell IV. Execute

More information

SIMULATION OF TURNING RATES IN TRAFFIC SYSTEMS

SIMULATION OF TURNING RATES IN TRAFFIC SYSTEMS SIMULATION OF TURNING RATES IN TRAFFIC SYSTEMS Balázs KULCSÁR István VARGA Department of Transport Automation, Budapest University of Technology and Economics Budapest, H-, Bertalan L. u. 2., Hungary e-mail:

More information

User Guide for Hermir version 0.9: Toolbox for Synthesis of Multivariate Stationary Gaussian and non-gaussian Series

User Guide for Hermir version 0.9: Toolbox for Synthesis of Multivariate Stationary Gaussian and non-gaussian Series User Guide for Hermir version 0.9: Toolbox for Synthesis of Multivariate Stationary Gaussian and non-gaussian Series Hannes Helgason, Vladas Pipiras, and Patrice Abry June 2, 2011 Contents 1 Organization

More information

Curriculum Vitae Wenxiao Zhao

Curriculum Vitae Wenxiao Zhao 1 Personal Information Curriculum Vitae Wenxiao Zhao Wenxiao Zhao, Male PhD, Associate Professor with Key Laboratory of Systems and Control, Institute of Systems Science, Academy of Mathematics and Systems

More information

Uncertainty Quantification in Computational Models

Uncertainty Quantification in Computational Models Uncertainty Quantification in Computational Models Habib N. Najm Sandia National Laboratories, Livermore, CA, USA Workshop on Understanding Climate Change from Data (UCC11) University of Minnesota, Minneapolis,

More information

Model Based Fault Detection and Diagnosis Using Structured Residual Approach in a Multi-Input Multi-Output System

Model Based Fault Detection and Diagnosis Using Structured Residual Approach in a Multi-Input Multi-Output System SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 4, No. 2, November 2007, 133-145 Model Based Fault Detection and Diagnosis Using Structured Residual Approach in a Multi-Input Multi-Output System A. Asokan

More information

Model-based Stochastic Fault Detection and Diagnosis for Lithium-ion Batteries

Model-based Stochastic Fault Detection and Diagnosis for Lithium-ion Batteries Article Model-based Stochastic Fault Detection and Diagnosis for Lithium-ion Batteries Jeongeun Son, Yuncheng Du* Department of Chemical & Biomolecular Engineering, Clarkson University, Potsdam NY 13676,

More information

However, reliability analysis is not limited to calculation of the probability of failure.

However, reliability analysis is not limited to calculation of the probability of failure. Probabilistic Analysis probabilistic analysis methods, including the first and second-order reliability methods, Monte Carlo simulation, Importance sampling, Latin Hypercube sampling, and stochastic expansions

More information

Appendix F. Computational Statistics Toolbox. The Computational Statistics Toolbox can be downloaded from:

Appendix F. Computational Statistics Toolbox. The Computational Statistics Toolbox can be downloaded from: Appendix F Computational Statistics Toolbox The Computational Statistics Toolbox can be downloaded from: http://www.infinityassociates.com http://lib.stat.cmu.edu. Please review the readme file for installation

More information

Contents Introduction... 3 Get the data... 4 Workflow... 7 Test 1: Urban fabric (all)... 8 Test 2: Urban fabric (industrial and commercial)...

Contents Introduction... 3 Get the data... 4 Workflow... 7 Test 1: Urban fabric (all)... 8 Test 2: Urban fabric (industrial and commercial)... AAXY tutorial Contents Introduction... 3 Get the data... 4 Workflow... 7 Test 1: Urban fabric (all)... 8 Test 2: Urban fabric (industrial and commercial)... 9 Test 3: Urban fabric (residential)... 10 Test

More information

Chaospy: A modular implementation of Polynomial Chaos expansions and Monte Carlo methods

Chaospy: A modular implementation of Polynomial Chaos expansions and Monte Carlo methods Chaospy: A modular implementation of Polynomial Chaos expansions and Monte Carlo methods Simen Tennøe Supervisors: Jonathan Feinberg Hans Petter Langtangen Gaute Einevoll Geir Halnes University of Oslo,

More information

Methods for including uncertainty in seismic PSA L Raganelli K Ardron

Methods for including uncertainty in seismic PSA L Raganelli K Ardron Methods for including uncertainty in seismic PSA L Raganelli K Ardron Background Earthquakes random events with uncertainty in intensity We want to study their effect on NPP safety and other risk significant

More information

Lecture 24: Starting to put it all together #3... More 2-Point Boundary value problems

Lecture 24: Starting to put it all together #3... More 2-Point Boundary value problems Lecture 24: Starting to put it all together #3... More 2-Point Boundary value problems Outline 1) Our basic example again: -u'' + u = f(x); u(0)=α, u(l)=β 2) Solution of 2-point Boundary value problems

More information