Model Order Reduction with pymor and NGSolve Stephan Rave

Størrelse: px
Starte visningen fra side:

Download "Model Order Reduction with pymor and NGSolve Stephan Rave"

Transkript

1 Münster Model Order Reduction with pymor and NGSolve Stephan Rave living knowledge WWU Münster NGSolve User Meeting Vienna June

2 Outline Münster Model Order Reduction with pymor and NGSolve 2 /19 Model Order Reduction. Model Order Reduction with pymor. Model Order Reduction with pymor and NGSolve. pymor main developers Rene Milk Petar Mlinarić Stephan Rave Felix Schindler

3 Münster Model Order Reduction with pymor and NGSolve 3 /19 Model Order Reduction

4 Münster Model Order Reduction with pymor and NGSolve 4 /19 Parametric Model Order Reduction Consider parametric problems Φ : P V s : V R S where P R P compact set (parameter domain). V Hilbert space (solution state space dim V 0 possibly dim V = ). Φ maps parameters to solutions of parametric PDE (hard to compute). s maps state vectors to quantities of interest. Objective Compute s Φ : R P V R S for many µ P or quickly for unknown single µ P.

5 Münster Model Order Reduction with pymor and NGSolve 5 /19 The Reduced Basis Method in a Nutshell Objective Quickly compute s Φ : R P V R S. When Φ s are sufficiently smooth a quickly computable low-dimensional approximation of s Φ should exist.

6 Münster Model Order Reduction with pymor and NGSolve 5 /19 The Reduced Basis Method in a Nutshell Objective Quickly compute s Φ N : R P V N R S. When Φ s are sufficiently smooth a quickly computable low-dimensional approximation of s Φ should exist. Idea 1: State space reduction: Define approximation Φ N : P V N via Galerkin projection dim V N =: N dim V. Approximate s Φ s Φ N.

7 Münster Model Order Reduction with pymor and NGSolve 5 /19 The Reduced Basis Method in a Nutshell Objective Quickly compute s Φ N : R P V N R S. When Φ s are sufficiently smooth a quickly computable low-dimensional approximation of s Φ should exist. Idea 1: State space reduction: Define approximation Φ N : P V N via Galerkin projection dim V N =: N dim V. Approximate s Φ s Φ N. Idea 2: V N span{φ(µ 1 )... Φ(µ k )}.

8 Münster Model Order Reduction with pymor and NGSolve 5 /19 The Reduced Basis Method in a Nutshell Objective Quickly compute s Φ N : R P V N R S. When Φ s are sufficiently smooth a quickly computable low-dimensional approximation of s Φ should exist. Idea 1: State space reduction: Define approximation Φ N : P V N via Galerkin projection dim V N =: N dim V. Approximate s Φ s Φ N. Idea 2: V N span{φ(µ 1 )... Φ(µ k )}. Idea 3: Construct V N iteratively via greedy search of P using quickly computable surrogate η N (Φ N (µ) µ) Φ(µ) Φ N (µ).

9 An Example Münster Model Order Reduction with pymor and NGSolve 6 /19 Experimental Data Mathematical Modeling Multiscale Numerics Model Reduction MULTIBAT: Gain understanding of degradation processes in rechargeable Li-Ion Batteries through mathematical modeling and simulation. Integration Validation Focus: Li-Plating. Li-plating initiated at interface between active particles and electrolyte. Need microscale models which resolve active particle geometry. Huge nonlinear discrete models.

10 Münster Model Order Reduction with pymor and NGSolve 7 /19 An Example MOR Results DOFs Snapshots: 3 dim V N = cell voltage / V M = transferred charge / nah Rel. err.: < Full model: 13h Reduction: 9h Red. model: 5m avg. Li concentr. / kmol/m Speedup: na na na na na full model red. model

11 Münster Model Order Reduction with pymor and NGSolve 8 /19 Model Order Reduction with pymor

12 Münster Model Order Reduction with pymor and NGSolve 9 /19 pymor Model Order Reduction with Python Goal One tool for algorithm development and large-scale applications. Started late k lines of Python code 3k single commits. BSD-licensed fork us on Github! Quick prototyping with Python 2/3. Comes with small NumPy/SciPy-based discretization toolkit for getting started quickly. Seamless integration with high-performance PDE solvers.

13 Münster Model Order Reduction with pymor and NGSolve 10 /19 Generic Algorithms and Interfaces for MOR dealii model() fenics model() dune model() PDE solver deal.ii FEniCS DUNE... pymor-deal.ii dolfin dune-pymor d prod =... operator rhs LincombOperator Discretization pymor example.py U = d.solve(mu) d.visualize(u) apply2 Operator apply2 Operator... product Operator VectorArray axpy scal U = d.solve(mu) apply inverse apply2 greedy(d...) Greedy reductor(d basis) Reductor Gram-Schmidt User Code gram schmidt basis extension(basis U prod) Generic algorithms... VectorArray Operator Discretization classes represent objects in solver s memory. No communication of high-dimensional data. Tight low-level integration with external solver. No MOR-specific code in solver.

14 Münster Model Order Reduction with pymor and NGSolve 11 /19 Implemented Algorithms Gram-Schmidt POD. Greedy basis generation with different extension algorithms. Automatic (Petrov-)Galerkin projection of arbitrarily nested affine combinations of operators. Interpolation of arbitrary (nonlinear) operators EI-Greedy DEIM. A posteriori error estimation. Iterative linear solvers Newton algorithm time-stepping algorithms. New! System theory Methods: balanced truncation IRKA... (sys-mor branch)

15 Münster Model Order Reduction with pymor and NGSolve 12 /19 FEniCS Support Included Directly interfaces FEniCS LA backend no copies needed. Use same MOR code with both backends! Only 150 SLOC for bindings. Thermal block demo: 30 SLOC FEniCS + 15 SLOC wrapping for pymor. Easily increase FEM order etc. Figure: 3x3 thermal block problem top: red. solution bottom: red. error left: pymor solver right: FEniCS solver

16 Münster Model Order Reduction with pymor and NGSolve deal.ii Support I pymor-deall.ii support module deal.ii I Python bindings for I dealii::vector I dealii::sparsematrix. estimator effectivity maximum red. error I pymor wrapper classes. 0.8 I 10 7 MOR demo for linear elasticity example from tutorial Figure: top: Solutions for (µ λ) = (1 1) and (µ λ) = (1 10) bottom: red. errs. and max./min. estimator effectivities vs. dim VN. 13 /19

17 Münster Model Order Reduction with pymor and NGSolve 14 /19 Tools for interfacing MPI parallel solvers I Automatically make sequential bindings MPI aware. I Reduce HPC-Cluster models without thinking about MPI at all. I Interactively debug MPI parallel solvers. Figure: FV solution of 3D Burgers-type equation ( DOFs 600 time steps) using Dune. Table: Time (s) needed for solution using DUNE / DUNE with pymor timestepping. MPI ranks DUNE pymor overhead % 4.5% 5.0% 5.7% 5.3% 5.3% 6.0% 5.4% 11.8%

18 Münster Model Order Reduction with pymor and NGSolve 15 /19 Model Order Reduction with pymor and NGSolve

19 NGSolve Support Münster Model Order Reduction with pymor and NGSolve 16 /19 Based on NGSolve - Python. See ngs-user-meeting17 branch of pymor repo. pymor wrappers for GridFunction and BaseMatrix classes. 3d thermal block demo included. Joint work with Christoph Lehrenfeld. Figure: 3d thermal block problem top: full/red. sol. bottom: err. for worst approx. µ and max. red. error vs. dim V N.

20 Münster Model Order Reduction with pymor and NGSolve 17 /19 import live_demo

21 Münster Model Order Reduction with pymor and NGSolve 18 /19 Matrix DEIM with NGSolve Osmotic cell swelling problem tu α u = 0 V nu + α nu = 0 βκ + γ(u u 0 ) = V n in Ω(t) on Ω(t) on Ω(t) osmosis Transformed concentration equation on reference domain J n+1 û n+1 ˆv dx + t J n+1 V (F n+1 T ˆx ˆv)û n+1 dx ˆΩ ˆΩ + t αj n+1 (F n+1 T ˆx u) (F n+1 T ˆx ˆv) dx = ˆΩ J n û n ˆv dx ˆΩ Nonlinear in transformation Ψ F := x Ψ J := det(f ) V := tψ. Use Matrix-DEIM w.r.t. Ψ.

22 Münster Model Order Reduction with pymor and NGSolve 19 /19 Thank you for your attention! My homepage Jupyter notebook pymor Generic Algorithms and Interfaces for Model Order Reduction SIAM J. Sci. Comput. 38(5) pp. S194 S216 MULTIBAT: Unified Workflow for fast electrochemical 3D simulations of lithium-ion cells combining virtual stochastic microstructures electrochemical degradation models and model order reduction (submitted)

Computing the constant in Friedrichs inequality

Computing the constant in Friedrichs inequality Computing the constant in Friedrichs inequality Tomáš Vejchodský vejchod@math.cas.cz Institute of Mathematics, Žitná 25, 115 67 Praha 1 February 8, 212, SIGA 212, Prague Motivation Classical formulation:

Læs mere

Particle-based T-Spline Level Set Evolution for 3D Object Reconstruction with Range and Volume Constraints

Particle-based T-Spline Level Set Evolution for 3D Object Reconstruction with Range and Volume Constraints Particle-based T-Spline Level Set for 3D Object Reconstruction with Range and Volume Constraints Robert Feichtinger (joint work with Huaiping Yang, Bert Jüttler) Institute of Applied Geometry, JKU Linz

Læs mere

CISM COURSE COMPUTATIONAL ACOUSTICS

CISM COURSE COMPUTATIONAL ACOUSTICS CISM COURSE COMPUTATIONAL ACOUSTICS Solvers Part 5: Multigrid II Ulrich Langer and Martin Neumüller Institute of Computational Mathematics Johannes Kepler University Linz Udine, May 23-27, 2016 Outline

Læs mere

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Generalized Probit Model in Design of Dose Finding Experiments Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Outline Motivation Generalized probit model Utility function Locally optimal designs

Læs mere

Linear Programming ١ C H A P T E R 2

Linear Programming ١ C H A P T E R 2 Linear Programming ١ C H A P T E R 2 Problem Formulation Problem formulation or modeling is the process of translating a verbal statement of a problem into a mathematical statement. The Guidelines of formulation

Læs mere

Non-Linear Image Registration on OcTrees

Non-Linear Image Registration on OcTrees Non-Linear Image Registration on OcTrees Eldad Haber Joint work with Stefan Heldmann Jan Modersitzki Outline Part I: Introduction to Image Registration Outline Part I: Introduction to Image Registration

Læs mere

Basic statistics for experimental medical researchers

Basic statistics for experimental medical researchers Basic statistics for experimental medical researchers Sample size calculations September 15th 2016 Christian Pipper Department of public health (IFSV) Faculty of Health and Medicinal Science (SUND) E-mail:

Læs mere

Introduction Ronny Bismark

Introduction Ronny Bismark Introduction 1 Outline Motivation / Problem Statement Tool holder Sensor calibration Motion primitive Concatenation of clouds Segmentation Next possible pose Problems and Challenges Future Work 2 Motivation

Læs mere

Quantum Biochemistry. Jan H. Jensen Department of Chemistry University of Copenhagen. Slides can be found at: DOI: /m9.figshare.

Quantum Biochemistry. Jan H. Jensen Department of Chemistry University of Copenhagen. Slides can be found at: DOI: /m9.figshare. Quantum Biochemistry Jan H. Jensen Department of Chemistry University of Copenhagen Slides can be found at: DOI:10.6084/m9.figshare.912548 Dias 1 Computational Chemistry Schrödinger Equation (1926) i t

Læs mere

Black Jack --- Review. Spring 2012

Black Jack --- Review. Spring 2012 Black Jack --- Review Spring 2012 Simulation Simulation can solve real-world problems by modeling realworld processes to provide otherwise unobtainable information. Computer simulation is used to predict

Læs mere

Besvarelser til Lineær Algebra Reeksamen Februar 2017

Besvarelser til Lineær Algebra Reeksamen Februar 2017 Besvarelser til Lineær Algebra Reeksamen - 7. Februar 207 Mikkel Findinge Bemærk, at der kan være sneget sig fejl ind. Kontakt mig endelig, hvis du skulle falde over en sådan. Dette dokument har udelukkende

Læs mere

Autodesk Simulation. Torben Christensen Niels Riis Christensen NTI CADCenter A/S

Autodesk Simulation. Torben Christensen Niels Riis Christensen NTI CADCenter A/S Autodesk Simulation Torben Christensen Niels Riis Christensen NTI CADCenter A/S Why Autodesk Simulation? A Comprehensive Portfolio of Solutions Mechanical Computational Fluid Dynamics Structural Plastics

Læs mere

2a. Conceptual Modeling Methods

2a. Conceptual Modeling Methods ICT Enhanced Buildings Potentials IKT og Videnrepræsentationer - ICT and Knowledge Representations. 2a. Conceptual Modeling Methods Cand. Scient. Bygningsinformatik. Semester 2, 2010. CONTENT Conceptual

Læs mere

PEMS RDE Workshop. AVL M.O.V.E Integrative Mobile Vehicle Evaluation

PEMS RDE Workshop. AVL M.O.V.E Integrative Mobile Vehicle Evaluation PEMS RDE Workshop AVL M.O.V.E Integrative Mobile Vehicle Evaluation NEW - M.O.V.E Mobile Testing Platform Key Requirements for Measuring Systems Robustness Shock / vibrations Change of environment Compact

Læs mere

Applications. Computational Linguistics: Jordan Boyd-Graber University of Maryland RL FOR MACHINE TRANSLATION. Slides adapted from Phillip Koehn

Applications. Computational Linguistics: Jordan Boyd-Graber University of Maryland RL FOR MACHINE TRANSLATION. Slides adapted from Phillip Koehn Applications Slides adapted from Phillip Koehn Computational Linguistics: Jordan Boyd-Graber University of Maryland RL FOR MACHINE TRANSLATION Computational Linguistics: Jordan Boyd-Graber UMD Applications

Læs mere

Semi-smooth Newton method for Solving Unilateral Problems in Fictitious Domain Formulations

Semi-smooth Newton method for Solving Unilateral Problems in Fictitious Domain Formulations Semi-smooth Newton method for Solving Unilateral Problems in Fictitious Domain Formulations Jaroslav Haslinger, Charles University, Prague Tomáš Kozubek, VŠB TU Ostrava Radek Kučera, VŠB TU Ostrava SNA

Læs mere

DSB s egen rejse med ny DSB App. Rubathas Thirumathyam Principal Architect Mobile

DSB s egen rejse med ny DSB App. Rubathas Thirumathyam Principal Architect Mobile DSB s egen rejse med ny DSB App Rubathas Thirumathyam Principal Architect Mobile Marts 2018 AGENDA 1. Ny App? Ny Silo? 2. Kunden => Kunderne i centrum 1 Ny app? Ny silo? 3 Mødetitel Velkommen til Danske

Læs mere

Pontryagin Approximations for Optimal Design of Elastic Structures

Pontryagin Approximations for Optimal Design of Elastic Structures Pontryagin Approximations for Optimal Design of Elastic Structures Jesper Carlsson NADA, KTH jesperc@nada.kth.se Collaborators: Anders Szepessy, Mattias Sandberg October 5, 2005 A typical optimal design

Læs mere

Exercise 6.14 Linearly independent vectors are also affinely independent.

Exercise 6.14 Linearly independent vectors are also affinely independent. Affine sets Linear Inequality Systems Definition 6.12 The vectors v 1, v 2,..., v k are affinely independent if v 2 v 1,..., v k v 1 is linearly independent; affinely dependent, otherwise. We first check

Læs mere

Richter 2013 Presentation Mentor: Professor Evans Philosophy Department Taylor Henderson May 31, 2013

Richter 2013 Presentation Mentor: Professor Evans Philosophy Department Taylor Henderson May 31, 2013 Richter 2013 Presentation Mentor: Professor Evans Philosophy Department Taylor Henderson May 31, 2013 OVERVIEW I m working with Professor Evans in the Philosophy Department on his own edition of W.E.B.

Læs mere

Intelligent Packaging Solutions

Intelligent Packaging Solutions Intelligent Packaging Solutions Hofstätter & Ebbesen A/S Højvangen 19 3060 Espergærde Denmark Tel +45 4912 2122 Fax +45 4912 2199 info@ultraplast.dk www.ultraplast.dk UltraPlast is a hi-tech company specializing

Læs mere

Small Autonomous Devices in civil Engineering. Uses and requirements. By Peter H. Møller Rambøll

Small Autonomous Devices in civil Engineering. Uses and requirements. By Peter H. Møller Rambøll Small Autonomous Devices in civil Engineering Uses and requirements By Peter H. Møller Rambøll BACKGROUND My Background 20+ years within evaluation of condition and renovation of concrete structures Last

Læs mere

Pattern formation Turing instability

Pattern formation Turing instability Pattern formation Turing instability Tomáš Vejchodský Centre for Mathematical Biology Mathematical Institute Summer school, Prague, 6 8 August, 213 Outline Motivation Turing instability general conditions

Læs mere

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A +

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A + Strings and Sets: A string over Σ is any nite-length sequence of elements of Σ The set of all strings over alphabet Σ is denoted as Σ Operators over set: set complement, union, intersection, etc. set concatenation

Læs mere

Breaking Industrial Ciphers at a Whim MATE SOOS PRESENTATION AT HES 11

Breaking Industrial Ciphers at a Whim MATE SOOS PRESENTATION AT HES 11 Breaking Industrial Ciphers at a Whim MATE SOOS PRESENTATION AT HES 11 Story line 1 HiTag2: reverse-engineered proprietary cipher 2 Analytic tools are needed to investigate them 3 CryptoMiniSat: free software

Læs mere

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU OUTLINE INEFFICIENCY OF ATTILA WAYS TO PARALLELIZE LOW COMPATIBILITY IN THE COMPILATION A SOLUTION

Læs mere

l i n d a b presentation CMD 07 Business area Ventilation

l i n d a b presentation CMD 07 Business area Ventilation l i n d a b presentation CMD 07 Business area Ventilation 1 Ventilation Sales LTM June 4 097 MSEK EBIT LTM June 449 MSEK 11,0% Two Divisions ADS 85% Comfort 15% YTD June 07 % Sales +31 Nordic countries

Læs mere

ECE 551: Digital System * Design & Synthesis Lecture Set 5

ECE 551: Digital System * Design & Synthesis Lecture Set 5 ECE 551: Digital System * Design & Synthesis Lecture Set 5 5.1: Verilog Behavioral Model for Finite State Machines (FSMs) 5.2: Verilog Simulation I/O and 2001 Standard (In Separate File) 3/4/2003 1 ECE

Læs mere

Den uddannede har viden om: Den uddannede kan:

Den uddannede har viden om: Den uddannede kan: Den uddannede har viden om: Den uddannede kan: Den uddannede kan: Den studerende har udviklingsbaseret viden om og forståelse for Den studerende kan Den studerende kan Den studerende har udviklingsbaseret

Læs mere

Sustainable use of pesticides on Danish golf courses

Sustainable use of pesticides on Danish golf courses Indsæt nyt billede: Sustainable use of pesticides on Danish golf courses Anita Fjelsted - Danish EPA Ministry of the Environment 27 May 2015 - STERF The Danish Environmental Protection Agency 450 employees

Læs mere

Det Teknisk-Naturvidenskabelige Fakultet Første Studieår AALBORG UNIVERSITET Arkitektur Og Design MATEMATIK OG FORM

Det Teknisk-Naturvidenskabelige Fakultet Første Studieår AALBORG UNIVERSITET Arkitektur Og Design MATEMATIK OG FORM Det Teknisk-Naturvidenskabelige Fakultet Første Studieår AALBORG UNIVERSITET Arkitektur Og Design MATEMATIK OG FORM 27 April 2012 - Lecture 4 (in English) Vector operations in Grasshopper Group 1 8:15-9:15

Læs mere

The GAssist Pittsburgh Learning Classifier System. Dr. J. Bacardit, N. Krasnogor G53BIO - Bioinformatics

The GAssist Pittsburgh Learning Classifier System. Dr. J. Bacardit, N. Krasnogor G53BIO - Bioinformatics The GAssist Pittsburgh Learning Classifier System Dr. J. Bacardit, N. Krasnogor G53BIO - Outline bioinformatics Summary and future directions Objectives of GAssist GAssist [Bacardit, 04] is a Pittsburgh

Læs mere

Martin Lohse. Passing. Three mobile for accordion. Composed

Martin Lohse. Passing. Three mobile for accordion. Composed Martin Lohse Passing Three mobile for accordion Composed 2011-12 Passing Three mobile for accordion The score is in exact pitch, and the proposed registers can be changed according to room and instrument

Læs mere

Integrated Total Facility Management for Real Estate, Infrastructure & Facility Management

Integrated Total Facility Management for Real Estate, Infrastructure & Facility Management Integrated Total Facility Management for Real Estate, Infrastructure & Facility Management Udfordringen Top down Lederskab visioner Buttom up Fakta om Informi GIS 90 medarbejdere Full-size IT hus; salg/rådgivning/

Læs mere

Maneurop reciprocating compressors

Maneurop reciprocating compressors MAKING MODERN LIVING POSSIBLE Maneurop reciprocating compressors MT - MTZ - LTZ - NTZ - 60 z R404A - R507A - R407C - R134a - R22 QUICK REFERENCE PRODUCT RANGE Nominal voltage M-BP Applications LBP Applications

Læs mere

Det er muligt at chekce følgende opg. i CodeJudge: og

Det er muligt at chekce følgende opg. i CodeJudge: og Det er muligt at chekce følgende opg. i CodeJudge:.1.7 og.1.14 Exercise 1: Skriv en forløkke, som producerer følgende output: 1 4 9 16 5 36 Bonusopgave: Modificer dit program, så det ikke benytter multiplikation.

Læs mere

GNSS/INS Product Design Cycle. Taking into account MEMS-based IMU sensors

GNSS/INS Product Design Cycle. Taking into account MEMS-based IMU sensors GNSS/INS Product Design Cycle Taking into account MEMS-based IMU sensors L. Vander Kuylen 15 th th December 2005 Content Product Definition Product Development Hardware Firmware Measurement Campaign in

Læs mere

CONNECTING PEOPLE AUTOMATION & IT

CONNECTING PEOPLE AUTOMATION & IT CONNECTING PEOPLE AUTOMATION & IT Agenda 1) Hvad er IoT 2) Hvilke marked? 1) Hvor stor er markedet 2) Hvor er mulighederne 3) Hvad ser vi af trends i dag Hvad er IoT? Defining the Internet of Things -

Læs mere

Sign variation, the Grassmannian, and total positivity

Sign variation, the Grassmannian, and total positivity Sign variation, the Grassmannian, and total positivity arxiv:1503.05622 Slides available at math.berkeley.edu/~skarp Steven N. Karp, UC Berkeley FPSAC 2015 KAIST, Daejeon Steven N. Karp (UC Berkeley) Sign

Læs mere

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004)

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Unitel EDI MT940 June 2010 Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Contents 1. Introduction...3 2. General...3 3. Description of the MT940 message...3 3.1.

Læs mere

IBM Software Group. SOA v akciji. Srečko Janjić WebSphere Business Integration technical presales IBM Software Group, CEMA / SEA IBM Corporation

IBM Software Group. SOA v akciji. Srečko Janjić WebSphere Business Integration technical presales IBM Software Group, CEMA / SEA IBM Corporation IBM Software Group SOA v akciji Srečko Janjić Business Integration technical presales IBM Software Group, CEMA / SEA Service Oriented Architecture Design principles and technology for building reusable,

Læs mere

Aggregation based on road topologies for large scale VRPs

Aggregation based on road topologies for large scale VRPs Aggregation based on road topologies for large scale VRPs Eivind Nilssen, SINTEF Oslo, June 12-14 2008 1 Outline Motivation and background Aggregation Some results Conclusion 2 Motivation Companies with

Læs mere

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende Changes for Rottedatabasen Web Service The coming version of Rottedatabasen Web Service will have several changes some of them breaking for the exposed methods. These changes and the business logic behind

Læs mere

IBM Network Station Manager. esuite 1.5 / NSM Integration. IBM Network Computer Division. tdc - 02/08/99 lotusnsm.prz Page 1

IBM Network Station Manager. esuite 1.5 / NSM Integration. IBM Network Computer Division. tdc - 02/08/99 lotusnsm.prz Page 1 IBM Network Station Manager esuite 1.5 / NSM Integration IBM Network Computer Division tdc - 02/08/99 lotusnsm.prz Page 1 New esuite Settings in NSM The Lotus esuite Workplace administration option is

Læs mere

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer?

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? Kandidatuddannelsen i Informationsarkitektur - Aalborg 3 respondenter 10 spørgeskemamodtagere Svarprocent: 30% Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? I hvilken grad har uddannelsen

Læs mere

Portal Registration. Check Junk Mail for activation . 1 Click the hyperlink to take you back to the portal to confirm your registration

Portal Registration. Check Junk Mail for activation  . 1 Click the hyperlink to take you back to the portal to confirm your registration Portal Registration Step 1 Provide the necessary information to create your user. Note: First Name, Last Name and Email have to match exactly to your profile in the Membership system. Step 2 Click on the

Læs mere

CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2

CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2 1 CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2 Outline 2 HW Solution Exercise (Equivalence Class Testing) Exercise (Decision Table Testing) Pairwise Testing Exercise (Pairwise Testing) 1 Homework

Læs mere

Boligsøgning / Search for accommodation!

Boligsøgning / Search for accommodation! Boligsøgning / Search for accommodation! For at guide dig frem til den rigtige vejledning, skal du lige svare på et par spørgsmål: To make sure you are using the correct guide for applying you must answer

Læs mere

Design til digitale kommunikationsplatforme-f2013

Design til digitale kommunikationsplatforme-f2013 E-travellbook Design til digitale kommunikationsplatforme-f2013 ITU 22.05.2013 Dreamers Lana Grunwald - svetlana.grunwald@gmail.com Iya Murash-Millo - iyam@itu.dk Hiwa Mansurbeg - hiwm@itu.dk Jørgen K.

Læs mere

Matematikken former morgendagens satellitter

Matematikken former morgendagens satellitter Matematikken former morgendagens satellitter Michael Lumholt Adm. Direktør ml@ticra.com "Fremtidens matematik" Maj 2014, KU/DTU Page 1 Agenda Kort introduktion til TICRA Eksempler på hvordan vi arbejder

Læs mere

Sampling real algebraic varieties for topological data analysis

Sampling real algebraic varieties for topological data analysis Sampling real algebraic varieties for topological data analysis Joint with: Emilie Dufresne (U. York) Heather Harrington (U. Oxford) Jonathan Hauenstein (U. Notre Dame) AG19, July 2019 Sampling real varieties

Læs mere

Automatic Code Orchestration from Descriptive Implementations

Automatic Code Orchestration from Descriptive Implementations ft her Automatic Code Orchestration from Descriptive Implementations older Professor Brian Vinter Niels Bohr Institute KU ft her Automatic Code Orchestration from Descriptive Implementations Prototypin

Læs mere

Basic Design Flow. Logic Design Logic synthesis Logic optimization Technology mapping Physical design. Floorplanning Placement Fabrication

Basic Design Flow. Logic Design Logic synthesis Logic optimization Technology mapping Physical design. Floorplanning Placement Fabrication Basic Design Flow System design System/Architectural Design Instruction set for processor Hardware/software partition Memory, cache Logic design Logic Design Logic synthesis Logic optimization Technology

Læs mere

SKRIFTLIG EKSAMEN I NUMERISK DYNAMIK Bygge- og Anlægskonstruktion, 7. semester Torsdag den 19. juni 2003 kl Alle hjælpemidler er tilladt

SKRIFTLIG EKSAMEN I NUMERISK DYNAMIK Bygge- og Anlægskonstruktion, 7. semester Torsdag den 19. juni 2003 kl Alle hjælpemidler er tilladt SKRIFTLIG EKSAMEN I NUMERISK DYNAMIK Bygge- og Anlægskonstruktion, 7. semester Torsdag den 9. juni 23 kl. 9.-3. Alle hjælpemidler er tilladt OPGAVE f(x) x Givet funktionen f(x) x, x [, ] Spørgsmål (%)

Læs mere

Molio specifications, development and challenges. ICIS DA 2019 Portland, Kim Streuli, Molio,

Molio specifications, development and challenges. ICIS DA 2019 Portland, Kim Streuli, Molio, Molio specifications, development and challenges ICIS DA 2019 Portland, Kim Streuli, Molio, 2019-06-04 Introduction The current structure is challenged by different factors. These are for example : Complex

Læs mere

Remote Sensing til estimering af nedbør og fordampning

Remote Sensing til estimering af nedbør og fordampning Remote Sensing til estimering af nedbør og fordampning Mads Olander Rasmussen Remote Sensing & GIS Expert GRAS A/S How can remote sensing assist assessment of hydrological resources? -with special focus

Læs mere

A Strategic Partnership between Aarhus University, Nykredit & PwC. - Focusing on Small and Medium-sized Enterprises

A Strategic Partnership between Aarhus University, Nykredit & PwC. - Focusing on Small and Medium-sized Enterprises A Strategic Partnership between Aarhus University, Nykredit & PwC - Focusing on Small and Medium-sized Enterprises 04-12-2013 1 Why Danmark vinder bronze i innovation, men sakker bagud i forhold til vores

Læs mere

v Motivation v Multi- Atlas Segmentation v Learn Dictionary v Apply Dictionary v Results

v Motivation v Multi- Atlas Segmentation v Learn Dictionary v Apply Dictionary v Results Anatomical Atlas Probabilistic Atlas Shattuck, et al. NeuroImage. 2008 v Motivation v Multi- Atlas Segmentation v Learn Dictionary v Apply Dictionary v Results 2 Shattuck, et al. NeuroImage. 2008 Traditional

Læs mere

Solid TYRES for your FORKLIFT TRUCKS

Solid TYRES for your FORKLIFT TRUCKS Solid TYRES for your FORKLIFT TRUCKS Find more information at starco.com STARCO Tusker-Unicorn 2017-I INT-eng STARCO IS A REGISTERED TRADEMARK Copyright 2016 by STARCO - all rights reserved FORKLIFT TRUCKS

Læs mere

Experience. Knowledge. Business. Across media and regions.

Experience. Knowledge. Business. Across media and regions. Experience. Knowledge. Business. Across media and regions. 1 SPOT Music. Film. Interactive. Velkommen. Program. - Introduktion - Formål og muligheder - Målgruppen - Udfordringerne vi har identificeret

Læs mere

Vina Nguyen HSSP July 13, 2008

Vina Nguyen HSSP July 13, 2008 Vina Nguyen HSSP July 13, 2008 1 What does it mean if sets A, B, C are a partition of set D? 2 How do you calculate P(A B) using the formula for conditional probability? 3 What is the difference between

Læs mere

Frequency Dispersion: Dielectrics, Conductors, and Plasmas

Frequency Dispersion: Dielectrics, Conductors, and Plasmas 1/23 Frequency Dispersion: Dielectrics, Conductors, and Plasmas Carlos Felipe Espinoza Hernández Professor: Jorge Alfaro Instituto de Física Pontificia Universidad Católica de Chile 2/23 Contents 1 Simple

Læs mere

Elektriske apparater til husholdningsbrug o.l. Sikkerhed Del 1: Generelle krav

Elektriske apparater til husholdningsbrug o.l. Sikkerhed Del 1: Generelle krav Dansk standard Tillæg DS/IEC 60335-1/A1:2013 + Corr 1:2014 1. udgave 2014-05-08 Elektriske apparater til husholdningsbrug o.l. Sikkerhed Del 1: Generelle krav Household and similar electrical appliances

Læs mere

Parallel Finite Element Methods with Weighted Linear B-Splines

Parallel Finite Element Methods with Weighted Linear B-Splines Parallel Finite Element Methods with Weighted Linear B-Splines K. Höllig, J. Hörner, and M. Pfeil http://www.web-spline.de Stuttgart, October 5, 2007 Cooperation partners: Prof. Dr. U. Reif, Dr. J. Wipper

Læs mere

CHAPTER 8: USING OBJECTS

CHAPTER 8: USING OBJECTS Ruby: Philosophy & Implementation CHAPTER 8: USING OBJECTS Introduction to Computer Science Using Ruby Ruby is the latest in the family of Object Oriented Programming Languages As such, its designer studied

Læs mere

Projektledelse i praksis

Projektledelse i praksis Projektledelse i praksis - Hvordan skaber man (grundlaget) for gode beslutninger? Martin Malis Business Consulting, NNIT mtmi@nnit.com 20. maj, 2010 Agenda Project Governance Portfolio Management Project

Læs mere

User Manual for LTC IGNOU

User Manual for LTC IGNOU User Manual for LTC IGNOU 1 LTC (Leave Travel Concession) Navigation: Portal Launch HCM Application Self Service LTC Self Service 1. LTC Advance/Intimation Navigation: Launch HCM Application Self Service

Læs mere

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer?

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? Kandidatuddannelsen i Informationsvidenskab - Aalborg 2 respondenter 5 spørgeskemamodtagere Svarprocent: 40% Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? I hvilken grad har uddannelsen

Læs mere

Engineering of Chemical Register Machines

Engineering of Chemical Register Machines Prague International Workshop on Membrane Computing 2008 R. Fassler, T. Hinze, T. Lenser and P. Dittrich {raf,hinze,thlenser,dittrich}@minet.uni-jena.de 2. June 2008 Outline 1 Motivation Goal Realization

Læs mere

Lithium-Ion Jump-Starters / Jumper Cables

Lithium-Ion Jump-Starters / Jumper Cables AUTOMOTIVE Lithium-Ion Jump-Starters / Jumper Cables Lithium-Ion Jump-Starter 1300: Part No. DRLJS130 1300 4 6 8 cylinder (6 liter gas 3 liter diesel) SafeJump technology prevents sparking and protects

Læs mere

3D NASAL VISTA TEMPORAL

3D NASAL VISTA TEMPORAL USER MANUAL www.nasalsystems.es index index 2 I. System requirements 3 II. Main menu 4 III. Main popup menu 5 IV. Bottom buttons 6-7 V. Other functions/hotkeys 8 2 I. Systems requirements ``Recommended

Læs mere

Bilag. Resume. Side 1 af 12

Bilag. Resume. Side 1 af 12 Bilag Resume I denne opgave, lægges der fokus på unge og ensomhed gennem sociale medier. Vi har i denne opgave valgt at benytte Facebook som det sociale medie vi ligger fokus på, da det er det største

Læs mere

TM4 Central Station. User Manual / brugervejledning K2070-EU. Tel Fax

TM4 Central Station. User Manual / brugervejledning K2070-EU. Tel Fax TM4 Central Station User Manual / brugervejledning K2070-EU STT Condigi A/S Niels Bohrs Vej 42, Stilling 8660 Skanderborg Denmark Tel. +45 87 93 50 00 Fax. +45 87 93 50 10 info@sttcondigi.com www.sttcondigi.com

Læs mere

LED STAR PIN G4 BASIC INFORMATION: Series circuit. Parallel circuit. www.osram.com 1. HOW CAN I UNDERSTAND THE FOLLOWING SHEETS?

LED STAR PIN G4 BASIC INFORMATION: Series circuit. Parallel circuit. www.osram.com 1. HOW CAN I UNDERSTAND THE FOLLOWING SHEETS? BASIC INFORMATION: 1. HOW CAN I UNDERSTAND THE FOLLOWING SHES? Compatibility to OSRAM s: -Series Circuit... Page 2 -Parallel Circuit... Page 3 Compatibility to OTHER s : -Series Circuit... Page 4 -Parallel

Læs mere

Constant Terminal Voltage. Industry Workshop 1 st November 2013

Constant Terminal Voltage. Industry Workshop 1 st November 2013 Constant Terminal Voltage Industry Workshop 1 st November 2013 Covering; Reactive Power & Voltage Requirements for Synchronous Generators and how the requirements are delivered Other countries - A different

Læs mere

The SourceOne Family Today and Tomorrow. Michael Søriis Business Development Manager, EMC FUJITSU

The SourceOne Family Today and Tomorrow. Michael Søriis Business Development Manager, EMC FUJITSU The SourceOne Family Today and Tomorrow Michael Søriis Business Development Manager, EMC FUJITSU The Calculus of Information Growth Increasing Adoption More Users Increasing Data Active Inactive Higher

Læs mere

Bogen CMYK GUIDE Composing Colors Kay Werner Schmidt

Bogen CMYK GUIDE Composing Colors Kay Werner Schmidt Bogen CMYK GUIDE Composing Colors Kay Werner Schmidt Har du svært ved at sætte farver sammen? Køb bogen CMYK GUIDE Composing Colors og bliv bedre til at sammensætte farver og farvepaletter også til krævende

Læs mere

A multimodel data assimilation framework for hydrology

A multimodel data assimilation framework for hydrology A multimodel data assimilation framework for hydrology Antoine Thiboult, François Anctil Université Laval June 27 th 2017 What is Data Assimilation? Use observations to improve simulation 2 of 8 What is

Læs mere

Agenda. The need to embrace our complex health care system and learning to do so. Christian von Plessen Contributors to healthcare services in Denmark

Agenda. The need to embrace our complex health care system and learning to do so. Christian von Plessen Contributors to healthcare services in Denmark Agenda The need to embrace our complex health care system and learning to do so. Christian von Plessen Contributors to healthcare services in Denmark Colitis and Crohn s association Denmark. Charlotte

Læs mere

QUICK START Updated: 18. Febr. 2014

QUICK START Updated: 18. Febr. 2014 QUICK START Updated: 18. Febr. 2014 For at komme hurtigt og godt igang med dine nye Webstech produkter, anbefales at du downloader den senest opdaterede QuickStart fra vores hjemmeside: In order to get

Læs mere

I henhol til informationen givet i tryksagen Nationalt testcenter for vindmøller i Østerild Klitplantage fremsender undertegnede følgende forslag:

I henhol til informationen givet i tryksagen Nationalt testcenter for vindmøller i Østerild Klitplantage fremsender undertegnede følgende forslag: Page 1 of 2 Hansen, Gitte Fra: Brøndum, Jette Sendt: 19. oktober 2009 13:34 Til: 'chris@jorgensen.com' Cc: Brøndum, Jette Emne: VS: Testcenter til vindmøller Niels Christian Jørgensen: Forslag Opførelse

Læs mere

Healthcare Apps. OUH Odense University Hospital & Svendborg Hospital. Kiel, Germany, November 2013 1 05/12/13

Healthcare Apps. OUH Odense University Hospital & Svendborg Hospital. Kiel, Germany, November 2013 1 05/12/13 Healthcare Apps OUH Odense University Hospital & Svendborg Hospital Kiel, Germany, November 2013 1 05/12/13 Jesper Lakman Senior Consultant Digital InnovaGon (4 employees) IT Department (140 employees)

Læs mere

POSitivitiES Positive Psychology in European Schools HOW TO START

POSitivitiES Positive Psychology in European Schools HOW TO START POSitivitiES Positive Psychology in European Schools HOW TO START POSitivitiES Positive Psychology in European Schools PositivitiES er et Comenius Multilateral europæisk projekt, som har til formål at

Læs mere

Shooting tethered med Canon EOS-D i Capture One Pro. Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8

Shooting tethered med Canon EOS-D i Capture One Pro. Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8 Shooting tethered med Canon EOS-D i Capture One Pro Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8 For Canon EOS-D ejere der fotograferer Shooting tethered med EOS-Utility eller

Læs mere

VARIO D1. Samlet pris kr. XXXX,-

VARIO D1. Samlet pris kr. XXXX,- Forside INDHOLD! NYHED! 1 sæt vario d1 6 modul monteret med 6 stk. fotoprint, format 70 x 100 cm. 3 stk. halogenspot, 200W 2 stk. brochureholder VARIO D1 5 sk. Vario d2 rammer, format 70 x 100 cm. Monteret

Læs mere

Teknologispredning i sundhedsvæsenet DK ITEK: Sundhedsteknologi som grundlag for samarbejde og forretningsudvikling

Teknologispredning i sundhedsvæsenet DK ITEK: Sundhedsteknologi som grundlag for samarbejde og forretningsudvikling Teknologispredning i sundhedsvæsenet DK ITEK: Sundhedsteknologi som grundlag for samarbejde og forretningsudvikling 6.5.2009 Jacob Schaumburg-Müller jacobs@microsoft.com Direktør, politik og strategi Microsoft

Læs mere

Studieordning del 3,

Studieordning del 3, Studieordning del 3, 2014-2016 Autoteknolog, Valgfri Uddannelseselementer Academy Profession Degree in Automotive Technology Version 0.1 Revideret 19. august 2015 Side 0 af 6 Indhold Studieordningens del

Læs mere

What s Our Current Position? Uddannelsesstruktur i AUE. What Can You Choose After DE5? Uddannelsesstruktur i AUE

What s Our Current Position? Uddannelsesstruktur i AUE. What Can You Choose After DE5? Uddannelsesstruktur i AUE Information Meeting for DE5 and DE3 Further Study Possibilities What s Our Current Position? General Education Structure Andre muligheder DE3-DE5 Semesters (AUE) What Can You Choose After DE5? Diplomingeniøruddannelsen

Læs mere

DoodleBUGS (Hands-on)

DoodleBUGS (Hands-on) DoodleBUGS (Hands-on) Simple example: Program: bino_ave_sim_doodle.odc A simulation example Generate a sample from F=(r1+r2)/2 where r1~bin(0.5,200) and r2~bin(0.25,100) Note that E(F)=(100+25)/2=62.5

Læs mere

ODE and DDE in PODE. Martin Fink Pharmacological Modeler Modeling & Simulation, Novartis

ODE and DDE in PODE. Martin Fink Pharmacological Modeler Modeling & Simulation, Novartis ODE and DDE in PODE Martin Fink Pharmacological Modeler Modeling & Simulation, Novartis Overview ODEs and DDEs Introduction Sensitivities & (P)FIM Deriving sensitivities from ODEs & DDEs Comparison of

Læs mere

Sortering fra A-Z. Henrik Dorf Chefkonsulent SAS Institute

Sortering fra A-Z. Henrik Dorf Chefkonsulent SAS Institute Sortering fra A-Z Henrik Dorf Chefkonsulent SAS Institute Hvorfor ikke sortering fra A-Å? Det er for svært Hvorfor ikke sortering fra A-Å? Hvorfor ikke sortering fra A-Å? Hvorfor ikke sortering fra A-Å?

Læs mere

Eksempel på eksamensspørgsmål til caseeksamen

Eksempel på eksamensspørgsmål til caseeksamen Eksempel på eksamensspørgsmål til caseeksamen Engelsk niveau E, TIVOLI 2004/2005: in a British traveller s magazine. Make an advertisement presenting Tivoli as an amusement park. In your advertisement,

Læs mere

GAMPIX: a new generation of gamma camera for hot spot localisation

GAMPIX: a new generation of gamma camera for hot spot localisation GAMPIX: a new generation of gamma camera for hot spot localisation F. CARREL (1), R. ABOU KHALIL (2), P. BLOT (2), S. COLAS (3),M. GMAR (1), F. LEMASLE (2), N. SAUREL (3), V. SCHOEPFF (1), H. TOUBON (2)

Læs mere

Sport for the elderly

Sport for the elderly Sport for the elderly - Teenagers of the future Play the Game 2013 Aarhus, 29 October 2013 Ditte Toft Danish Institute for Sports Studies +45 3266 1037 ditte.toft@idan.dk A growing group in the population

Læs mere

Status på det trådløse netværk

Status på det trådløse netværk Status på det trådløse netværk Der er stadig problemer med det trådløse netværk, se status her: http://driftstatus.sdu.dk/?f=&antal=200&driftid=1671#1671 IT-service arbejder stadig med at løse problemerne

Læs mere

Challenges for the Future Greater Helsinki - North-European Metropolis

Challenges for the Future Greater Helsinki - North-European Metropolis Challenges for the Future Greater Helsinki - North-European Metropolis Prof. Dr.-Ing. / M.A. soc. pol. HafenCity University Hamburg Personal introduction background: - urban and regional planning - political

Læs mere

ATEX direktivet. Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet.

ATEX direktivet. Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet. ATEX direktivet Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet.dk tlf: 7220 2693 Vedligeholdelse af Certifikater / tekniske dossier / overensstemmelseserklæringen.

Læs mere

Lovkrav vs. udvikling af sundhedsapps

Lovkrav vs. udvikling af sundhedsapps Lovkrav vs. udvikling af sundhedsapps Health apps give patients better control User Data Social media Pharma Products User behaviour Relatives www Self monitoring (app) data extract Healthcare specialists

Læs mere

Improving Interdisciplinary Education of Anatomy, Practical Sports using Non-Profit Software

Improving Interdisciplinary Education of Anatomy, Practical Sports using Non-Profit Software Improving Interdisciplinary Education of Anatomy, Biomechanics and Practical Sports using Non-Profit Software Interdeciplinary Sports Biomechanics Anatomy How to improve interdeciplinary? Examples in biomechanics

Læs mere

frame bracket Ford & Dodge

frame bracket Ford & Dodge , Rev 3 02/19 frame bracket 8552005 Ford & Dodge ITEM PART # QTY DESCRIPTION 1 00083 8 NUT,.50NC HEX 2 00084 8 WASHER,.50 LOCK 3 14189-76 2 FRAME BRACKET 4 14194-76 1 411AL FRAME BRACKET PASSENGER SIDE

Læs mere