Transport Equation. Institut für Wasserbau, Lehrstuhl für Hydromechanik und Hydrosystemmodellierung. . p.1/21. home/lehre/vl-mhs-1-e/cover_sheet.

Größe: px
Ab Seite anzeigen:

Download "Transport Equation. Institut für Wasserbau, Lehrstuhl für Hydromechanik und Hydrosystemmodellierung. . p.1/21. home/lehre/vl-mhs-1-e/cover_sheet."

Transkript

1 Transport Equation home/lehre/vl-mhs-1-e/cover_sheet.tex. p.1/21

2 Table of contents 1. Introduction 2. Transport Equation 3. Analytical Solution 4. Discretization of the transport equation 5. Explicit schemes 6. Implicit schemes home/lehre/vl-mhs-1-e/toc_8.tex. p.2/21

3 Material / substantial derivation - Substantial acceleration - De Dt }{{} 1 = e t }{{} 2 e ˆ= ρ (continuity) e ˆ= ρv (momentum eqn.) e ˆ= ρu (energy eqn.) + v e }{{} 3 1 : substantial acceleration 2 : local acceleration 3 : advective acceleration home/lehre/vl-mhs-1-e/mat_subst_der.tex. p.3/21

4 Navier-Stokes Equation The Navier-Stokes equation can be seen as a transport equation for velocities and is a vector-equation. L(v, p) := ρ v t + v } {{ v } Advection σ = τ pi }{{} σ + f = 0 Viscosity The surface forces σ are the sum of hydrostatic pressure p plus the viscous stresses τ. f are the body forces, which is in our case gravity. For a newtonian fluid the viscous stresses are proportional to the rate of strain and the viscosity. For example: τ xx = 2µ v x x. home/lehre/vl-mhs-1-e/navier_stokes.tex. p.4/21

5 Transport Equation The classical transport equation is a scalar-equation for e.g. a concentration. L(c) := c t + v } {{ c } (D c) +r = 0 }{{} Advection Diffusion The dimensionless number that describes the ratio between the advection and the diffusion is the Peclet number. P e = Advection Diffusion P e = v L D [ ] (Peclet Number) L ˆ= characteristic lenght, e.g length of the domain home/lehre/vl-mhs-1-e/transp_eqn.tex. p.5/21

6 Transport properties Typical transport properties in selected hydrosystems V D M,D L Pe = vl D X s [m] t River 1 [m/s] 25 [m 2 /s] [s] Estuary 0.05 [m/s] 10 [m 2 /s] [s] Groundwater 1 [m/d] 50 [m 2 /d] [d] V ˆ= Typical transport velocity D M ˆ= Typical longitudinal diffusion coefficient Pe ˆ= Convection diffusion ratio for a mixing length of 50m X s ˆ= Width of distribution for a mixing length of 50m t ˆ= Time after solute is mixed home/lehre/vl-mhs-1-e/comparison.tex. p.6/21

7 1D - Transport-Equation Let us consider one of the representative model equations, for instance the advection-diffusion equation, written here as follows: where: u t }{{} 1 + v u x }{{} 2 x D u }{{ x} 3 = 0 1 ˆ= accumulation term 2 ˆ= advective / convective term 3 ˆ= diffusive term and u is the unknown function of (x,t), v is the convective speed and D the hydrodynamic dispersion tensor. home/lehre/vl-mhs-1-e/1d_transp_eqn.tex. p.7/21

8 Analytical Solution The Peclet-number is equal to: P e = vh D The analytic solution for the steady state transport equation, i.e. u = 0 is t u u i = exp(p e x) 1 h u j u i exp(p e) 1, { u = u i for x i = 0 u = u j for x j = h The solution of this equation is displayed on the next slide for different values of the Peclet number. home/lehre/vl-mhs-1-e/analyt_sol.tex. p.8/21

9 Analytical Solution II eplacements u j Pe << 1 Pe = 1 Pe =0 Pe = 1 u i i P e = v + P e = 0 j u j u i x i = 0 Pe >> 1 x u i x j = h v v = 0 i j u j h home/lehre/vl-mhs-1-e/analyt_sol_2.tex. p.9/21

10 Discretization of the Transport Equation c t + {vc D c} q = 0 One possibililty to discretize this equation is to separate the advection and the diffusion term c t + v c + c v (D c) q = 0. The third term is zero, because of the continuity equation c t + v c (D c) q = 0. Note: This discretization is not very well suited for IFD/FVmethods. home/lehre/vl-mhs-1-e/discr_transp_1.tex. p.10/21

11 Discretization of the Transport Equation c t + {vc D c} q = 0 The second possibility is to formulate the equation in a general integral form G c t dg + G {vc D c} dg and then apply the theorem of Gauss c t dg + (vc D c) n dγ G Γ G G q dg = 0, q dg = 0. home/lehre/vl-mhs-1-e/discr_transp_2.tex. p.11/21

12 Discretization of the Transport Equation The first discretization scheme is very well suited for the FDM, as the differential equation can be directly transferred to a difference equation. For example: implicit time discretization and a central difference scheme in space. c n+1 i c n i t + v cn+1 i+1 cn+1 i 1 2 D cn+1 i+1 2cn+1 i + c n+1 i 1 q 2 i = 0, Note: In this case the advective term is discretized incorrectly. home/lehre/vl-mhs-1-e/discr_transp_3.tex. p.12/21

13 Discretization of the Transport Equation The second discretization scheme is very well suited for the IFDM and the FVM, as the flux over the boundary of the control volumes can be approximated. For example: implicit time discretization G c n+1 i c n i t dg+ Γ (v cn+1 i+1 cn+1 i D cn+1 i+1 ) cn+1 i 1 dγ q i dg = 0, Note: In this case the advective term is approximated incorrectly. home/lehre/vl-mhs-1-e/discr_transp_4.tex. p.13/21

14 Diffusive and advective fluxes Diffusive fluxes Advective fluxes yield diagonal dominating matrices with positive coefficients the resulting system of equations can be solved without stability problems. (e.g. Laplace-equation) Transport properties of the advective flux have to be described correctly by choosing the right discretization method. the differential operator describing convection is not symmetric and e.g. nonlinear for the Navier-Stokes equation. home/lehre/vl-mhs-1-e/diff_adv_flux.tex. p.14/21

15 Explicit schemes for advective transport Unstable scheme t unknown k+1 known t k j 1 j j +1 s The partial derivations of the differential equation are replaced by differences quotients: u s uk j+1 u k j 1, 2 u t uk+1 j u k j t. The function values are taken from the known time plane: u u k j. home/lehre/vl-mhs-1-e/unstab_method.tex. p.15/21

16 Lax Scheme I t unknown k+1 known t k j 1 j j +1 s The diffusive (lax) method distinguishes itself from the unstable model insofar as that for the time derivation not u k j is used, but a mean from u k j 1 and u k j+1. home/lehre/vl-mhs-1-e/lax_scheme_1.tex. p.16/21

17 Lax Scheme II u x uk j+1 u k j 1 2 (as in the unstable method) u t 2uk+1 j u k j 1 u k j+1 2 t (new compared to the unstable method) or, more general: u t uk+1 j [ αu k j + (1 α) ( ) ] u k j 1 + u k j+1 /2 t (0 α 1; for α = 1 results the unstable model). home/lehre/vl-mhs-1-e/lax_scheme_2.tex u u k j or u uk j 1 + u k j+1 2. p.17/21

18 Upstream Difference Method u x u x uk j u k j 1 uk j+1 u k j This method takes into account that during the course of the observed time step, quantities of state and their derivatives are transported from a particular direction to the point j. u t uk+1 j u k j, u u k j t k+1 k flow from left to right flow from right to left t t j 1 j j +1 v > 0 unknown known s home/lehre/vl-mhs-1-e/upstream_scheme.tex. p.18/21

19 Implicit schemes for advective transport t k+1 unknown known t k j 1 j j + 1 s In the implicit methods, the influence of the unknown quantities of state u k+1 j 1, uk+1 j+1 of the neighboring grid points to the new time level is considered. An equation system for the vector of the unknown quantity u k+1 i results. The time step t is not limited from the start. home/lehre/vl-mhs-1-e/implicit_transp.tex. p.19/21

20 Preissmann Scheme t k+1 Θ t ( 1 Θ ) t unknown known approximated k i x ij 2 x ij 2 j s ij The Preismann schems differs from the before mentioned schemes in that it not only uses point information but also includes the derivatives in the approximation. The first derivatives are depictable in the point + in the space and time directions. home/lehre/vl-mhs-1-e/preismann_1.tex. p.20/21

21 Preissmann Scheme II u + x = u+ Θuk+1 x j u k+1 i u + t = u+ t = 1 2 t 1 t ( u k+1 j ij ( u k+1 j + u k+1 i 2 u k j + uk+1 i u k i ). + (1 Θ) uk j u k i, ij ) uk j + u k i 2 For the quantity of state in the calculation point, the mean value is established: u + Θ uk+1 j + u k+1 i + (1 Θ) uk j + u k i. 2 2 The method is stable for Θ > 0, 5. yields best results between: Θ 0, 55 0, 6. and creates numeric damping for larger values. home/lehre/vl-mhs-1-e/preismann_2.tex. p.21/21

Introduction FEM, 1D-Example

Introduction FEM, 1D-Example Introduction FEM, 1D-Example home/lehre/vl-mhs-1-e/folien/vorlesung/3_fem_intro/cover_sheet.tex page 1 of 25. p.1/25 Table of contents 1D Example - Finite Element Method 1. 1D Setup Geometry 2. Governing

Mehr

Introduction FEM, 1D-Example

Introduction FEM, 1D-Example Introduction FEM, D-Example /home/lehre/vl-mhs-/inhalt/cover_sheet.tex. p./22 Table of contents D Example - Finite Element Method. D Setup Geometry 2. Governing equation 3. General Derivation of Finite

Mehr

FEM Isoparametric Concept

FEM Isoparametric Concept FEM Isoparametric Concept home/lehre/vl-mhs--e/folien/vorlesung/4_fem_isopara/cover_sheet.tex page of 25. p./25 Table of contents. Interpolation Functions for the Finite Elements 2. Finite Element Types

Mehr

FEM Isoparametric Concept

FEM Isoparametric Concept FEM Isoparametric Concept home/lehre/vl-mhs--e/cover_sheet.tex. p./26 Table of contents. Interpolation Functions for the Finite Elements 2. Finite Element Types 3. Geometry 4. Interpolation Approach Function

Mehr

Air-Sea Gas Transfer: Schmidt Number Dependency and Intermittency

Air-Sea Gas Transfer: Schmidt Number Dependency and Intermittency Air-Sea Gas Transfer: Schmidt Number Dependency and Intermittency Bernd Jähne, Reinhard Nielsen, Christopher Pop, Uwe Schimpf, and Christoph Garbe Interdisziplinäres Zentrum für Wissenschaftliches Rechnen

Mehr

a) Name and draw three typical input signals used in control technique.

a) Name and draw three typical input signals used in control technique. 12 minutes Page 1 LAST NAME FIRST NAME MATRIKEL-NO. Problem 1 (2 points each) a) Name and draw three typical input signals used in control technique. b) What is a weight function? c) Define the eigen value

Mehr

Statistics, Data Analysis, and Simulation SS 2015

Statistics, Data Analysis, and Simulation SS 2015 Mainz, June 11, 2015 Statistics, Data Analysis, and Simulation SS 2015 08.128.730 Statistik, Datenanalyse und Simulation Dr. Michael O. Distler Dr. Michael O. Distler

Mehr

Geometrie und Bedeutung: Kap 5

Geometrie und Bedeutung: Kap 5 : Kap 5 21. November 2011 Übersicht Der Begriff des Vektors Ähnlichkeits Distanzfunktionen für Vektoren Skalarprodukt Eukidische Distanz im R n What are vectors I Domininic: Maryl: Dollar Po Euro Yen 6

Mehr

DICO Dimension Coupling

DICO Dimension Coupling DICO Dimension Coupling 3D!" 1D and phase transition (liquid vapor) Jonathan Jung, Martina Friedrich, Claus-Dieter Munz, Jean-Marc Hérard, Philippe Helluy MAC days, Paris University of Stuttgart Institut

Mehr

Bayesian updating in natural hazard risk assessment

Bayesian updating in natural hazard risk assessment International Forum on Engineering Decision Making, Third IFED Forum, Shoal Bay, Australia, 12-15 15 December 2007 1/23 Bayesian updating in natural hazard risk assessment Mathias Graf, Kazuyoshi Nishijima,

Mehr

Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. ,and C = [ ].

Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. ,and C = [ ]. Page 1 LAST NAME FIRST NAME MATRIKEL-NO. Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. Problem 1 (15 points) a) (1 point) A system description

Mehr

Allgemeine Mechanik Musterlösung 11.

Allgemeine Mechanik Musterlösung 11. Allgemeine Mechanik Musterlösung 11. HS 2014 Prof. Thomas Gehrmann Übung 1. Poisson-Klammern 1 Zeigen Sie mithilfe der Poisson-Klammern, dass folgendes gilt: a Für das Potential V ( r = α r 1+ε ist der

Mehr

Causal Analysis in Population Studies

Causal Analysis in Population Studies Causal Analysis in Population Studies Prof. Dr. Henriette Engelhardt Prof. Dr. Alexia Prskawetz Randomized experiments and observational studies for causal inference inference Historical dichotomy between

Mehr

Lattice Boltzmann Study of the Drag Correlation in Dilute and Moderately Dense Fluid-Particle Systems

Lattice Boltzmann Study of the Drag Correlation in Dilute and Moderately Dense Fluid-Particle Systems Lattice Boltzmann Study of the Drag Correlation in Dilute and Moderately Dense Fluid-Particle Systems Simon Bogner, Swati Mohanty1 and Ulrich Rüde Chair for System Simulation (LSS), University of Erlangen-Nürnberg,

Mehr

The Intelligent-Driver Model with Stochasticity:

The Intelligent-Driver Model with Stochasticity: The Intelligent-Driver Model with Stochasticity: New Insights into Traffic Flow Oscillations TU Dresden ISTTT 22, Chicago. July 2017 1 1 Overview Ø Traffic Flow Oscillations: Empirical Facts - Stationary

Mehr

Open queueing network model of a computer system: completed jobs

Open queueing network model of a computer system: completed jobs E Queueing Networks E Queueing Networks Open queueing network model of a computer system: Stream of new jobs Disk CPU Printer Stream of completed jobs Magnetic Tape E.164 E Queueing Networks "Central-Server-Model

Mehr

Unit 4. The Extension Principle. Fuzzy Logic I 123

Unit 4. The Extension Principle. Fuzzy Logic I 123 Unit 4 The Extension Principle Fuzzy Logic I 123 Images and Preimages of Functions Let f : X Y be a function and A be a subset of X. Then the image of A w.r.t. f is defined as follows: f(a) = {y Y there

Mehr

Allgemeine Mechanik Musterlösung 7.

Allgemeine Mechanik Musterlösung 7. Allgemeine Mechanik Musterlösung 7. HS 204 Prof. Thomas Gehrmann Übung. Lagrange-Funktion eines geladenen Teilchens Die Lagrange-Funktion für ein Teilchen der Ladung q in elektrischen und magnetischen

Mehr

A Classification of Partial Boolean Clones

A Classification of Partial Boolean Clones A Classification of Partial Boolean Clones DIETLINDE LAU, KARSTEN SCHÖLZEL Universität Rostock, Institut für Mathematik 25th May 2010 c 2010 UNIVERSITÄT ROSTOCK MATHEMATISCH-NATURWISSENSCHAFTLICHE FAKULTÄT,

Mehr

Ewald s Sphere/Problem 3.7

Ewald s Sphere/Problem 3.7 Ewald s Sphere/Problem 3.7 Studentproject/Molecular and Solid-State Physics Lisa Marx 831292 15.1.211, Graz Ewald s Sphere/Problem 3.7 Lisa Marx 831292 Inhaltsverzeichnis 1 General Information 3 1.1 Ewald

Mehr

Fluid-Particle Multiphase Flow Simulations for the Study of Sand Infiltration into Immobile Gravel-Beds

Fluid-Particle Multiphase Flow Simulations for the Study of Sand Infiltration into Immobile Gravel-Beds 3rd JUQUEEN Porting and Tuning Workshop Jülich, 2-4 February 2015 Fluid-Particle Multiphase Flow Simulations for the Study of Sand Infiltration into Immobile Gravel-Beds Tobias Schruff, Roy M. Frings,

Mehr

Numerical analysis of the influence of turbulence on the exchange processes between porous-medium and free flow

Numerical analysis of the influence of turbulence on the exchange processes between porous-medium and free flow Numerical analysis of the influence of turbulence on the exchange processes between porous-medium and free flow T. Fetzer Institut für Wasser- und Umweltsystemmodellierung Universität Stuttgart January

Mehr

Simulating the Idle: A New Load Case for Vehicle Thermal Management

Simulating the Idle: A New Load Case for Vehicle Thermal Management Simulating the Idle: A New Load Case for Vehicle Thermal Management Jan Eller FKFS / IVK University of Stuttgart Thomas Binner and Heinrich Reister Daimler AG Nils Widdecke and Jochen Wiedemann FKFS /

Mehr

Rätsel 1: Buchstabensalat klassisch, 5 5, A C (10 Punkte) Puzzle 1: Standard As Easy As, 5 5, A C (10 points)

Rätsel 1: Buchstabensalat klassisch, 5 5, A C (10 Punkte) Puzzle 1: Standard As Easy As, 5 5, A C (10 points) Rätsel 1: uchstabensalat klassisch, 5 5, (10 Punkte) Puzzle 1: Standard s Easy s, 5 5, (10 points) Rätsel 2: uchstabensalat klassisch, 5 5, (5 Punkte) Puzzle 2: Standard s Easy s, 5 5, (5 points) Rätsel

Mehr

[[ [ [ [[ Natur, Technik, Systeme. Test, Dezember Erstes Semester WI10. PV Panel und Kondensator

[[ [ [ [[ Natur, Technik, Systeme. Test, Dezember Erstes Semester WI10. PV Panel und Kondensator Natur, Technik, Systeme Test, Dezember 00 Erstes Semester WI0 Erlaubte Hilfsmittel: Bücher und persönlich verfasste Zusammenfassung. Rechen- und Schreibzeugs. Antworten müssen begründet und nachvollziehbar

Mehr

Word-CRM-Upload-Button. User manual

Word-CRM-Upload-Button. User manual Word-CRM-Upload-Button User manual Word-CRM-Upload for MS CRM 2011 Content 1. Preface... 3 2. Installation... 4 2.1. Requirements... 4 2.1.1. Clients... 4 2.2. Installation guidelines... 5 2.2.1. Client...

Mehr

Die UN-Kinderrechtskonvention. Darstellung der Bedeutung (German Edition)

Die UN-Kinderrechtskonvention. Darstellung der Bedeutung (German Edition) Die UN-Kinderrechtskonvention. Darstellung der Bedeutung (German Edition) Daniela Friedrich Click here if your download doesn"t start automatically Die UN-Kinderrechtskonvention. Darstellung der Bedeutung

Mehr

Dienstleistungsmanagement Übung 5

Dienstleistungsmanagement Übung 5 Dienstleistungsmanagement Übung 5 Univ.-Prof. Dr.-Ing. Wolfgang Maass Chair in Economics Information and Service Systems (ISS) Saarland University, Saarbrücken, Germany Besprechung Übungsblatt 4 Slide

Mehr

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3 User Manual for Marketing Authorisation and Lifecycle Management of Medicines Inhalt: User Manual for Marketing Authorisation and Lifecycle Management of Medicines... 1 1. General information... 2 2. Login...

Mehr

Wie man heute die Liebe fürs Leben findet

Wie man heute die Liebe fürs Leben findet Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Click here if your download doesn"t start automatically Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Wie

Mehr

Numerical Modelling of CO 2 Storage in Geological Formations with MUFTE-UG

Numerical Modelling of CO 2 Storage in Geological Formations with MUFTE-UG Numerical Modelling of CO 2 Storage in Geological Formations with MUFTE-UG Anozie Ebigbo, Andreas Kopp, Holger Class, Rainer Helmig Wednesday, 14th March 2007 Outline Motivation Physical/mathematical and

Mehr

LS Kopplung. = a ij l i l j. W li l j. = b ij s i s j. = c ii l i s i. W li s j J = L + S. L = l i L = L(L + 1) J = J(J + 1) S = s i S = S(S + 1)

LS Kopplung. = a ij l i l j. W li l j. = b ij s i s j. = c ii l i s i. W li s j J = L + S. L = l i L = L(L + 1) J = J(J + 1) S = s i S = S(S + 1) LS Kopplung in many electron systems there are many li and si the coupling to for total momentum J depends on the energetic ordering of the interactions orbital momenta interaction W li l j = a ij l i

Mehr

Conceptual multiphase modelling of an LNAPL contaminated site

Conceptual multiphase modelling of an LNAPL contaminated site 2 nd European Conference on Natural Attenuation Dechema, Frankfurt 19 th May 25 Conceptual multiphase modelling of an LNAPL contaminated site Benedict Miles* 1, Anita Peter 1, Ed Sudicky 2, Roudrajit Maji

Mehr

Quadt Kunststoffapparatebau GmbH

Quadt Kunststoffapparatebau GmbH Quadt Kunststoffapparatebau GmbH Industriestraße 4-6 D-53842 Troisdorf/Germany Tel.: +49(0)2241-95125-0 Fax.: +49(0)2241-95125-17 email: info@quadt-kunststoff.de Web: www.quadt-kunststoff.de Page 1 1.

Mehr

Interpolation Functions for the Finite Elements

Interpolation Functions for the Finite Elements Interpolation Functions for the Finite Elements For the finite elements method, the following is valid: The global function of a sought function consists of a sum of local functions: GALERKIN method: the

Mehr

Copyright by Hildegard Heilmann IAG 13.03.2004. Diese Unterlagen stelle ich den SchülerInnen des V. Bachilleratos des IAG zur Verfügung.

Copyright by Hildegard Heilmann IAG 13.03.2004. Diese Unterlagen stelle ich den SchülerInnen des V. Bachilleratos des IAG zur Verfügung. MTEquationSection;Flächenintegrale mit Derive Diese Unterlagen stelle ich den SchülerInnen des V. Bachilleratos des IAG zur Verfügung. Einige Anleitungen zum Arbeiten mit Derive: Befehle: VECTOR, ITERATES,

Mehr

4. Bayes Spiele. S i = Strategiemenge für Spieler i, S = S 1... S n. T i = Typmenge für Spieler i, T = T 1... T n

4. Bayes Spiele. S i = Strategiemenge für Spieler i, S = S 1... S n. T i = Typmenge für Spieler i, T = T 1... T n 4. Bayes Spiele Definition eines Bayes Spiels G B (n, S 1,..., S n, T 1,..., T n, p, u 1,..., u n ) n Spieler 1,..., n S i Strategiemenge für Spieler i, S S 1... S n T i Typmenge für Spieler i, T T 1...

Mehr

Dynamic Hybrid Simulation

Dynamic Hybrid Simulation Dynamic Hybrid Simulation Comparison of different approaches in HEV-modeling GT-SUITE Conference 12. September 2012, Frankfurt/Main Institut für Verbrennungsmotoren und Kraftfahrwesen Universität Stuttgart

Mehr

How-To-Do. Hardware Configuration of the CC03 via SIMATIC Manager from Siemens

How-To-Do. Hardware Configuration of the CC03 via SIMATIC Manager from Siemens How-To-Do Hardware Configuration of the CC03 via SIMATIC Manager from Siemens Content Hardware Configuration of the CC03 via SIMATIC Manager from Siemens... 1 1 General... 2 1.1 Information... 2 1.2 Reference...

Mehr

Einführung in die Finite Element Methode Projekt 2

Einführung in die Finite Element Methode Projekt 2 Einführung in die Finite Element Methode Projekt 2 Juri Schmelzer und Fred Brockstedt 17.7.2014 Juri Schmelzer und Fred Brockstedt Einführung in die Finite Element Methode Projekt 2 17.7.2014 1 / 29 Project

Mehr

Level 2 German, 2015

Level 2 German, 2015 91126 911260 2SUPERVISOR S Level 2 German, 2015 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 2.00 p.m. Friday 4 December 2015 Credits: Five

Mehr

Franke & Bornberg award AachenMünchener private annuity insurance schemes top grades

Franke & Bornberg award AachenMünchener private annuity insurance schemes top grades Franke & Bornberg award private annuity insurance schemes top grades Press Release, December 22, 2009 WUNSCHPOLICE STRATEGIE No. 1 gets best possible grade FFF ( Excellent ) WUNSCHPOLICE conventional annuity

Mehr

Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition)

Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition) Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition) Nadine Matthews Click here if your download doesn"t start automatically Duell auf offener

Mehr

Probabilistic LCF - investigation of a steam turbine rotor under transient thermal loads

Probabilistic LCF - investigation of a steam turbine rotor under transient thermal loads Probabilistic LCF - investigation of a steam turbine rotor Dipl. -Ing. David Pusch TU Dresden Professur für Turbomaschinen und Strahlantriebe Prof. Konrad Vogeler Dr. Ralf Voß Siemens AG Steam Turbines

Mehr

aus Doktorarbeiten Anna Lena Birkmeyer Oktober 2016

aus Doktorarbeiten Anna Lena Birkmeyer Oktober 2016 aus Doktorarbeiten Anna Lena Birkmeyer Fachbereich Mathematik TU Kaiserslautern Oktober 2016 In der der Arbeit: The mathematical modeling and optimization of... is a wide field of research [4,15,19,35,61,62,66,76,86]

Mehr

The Navier-Stokes equations on polygonal domains with mixed boundary conditions theory and approximation

The Navier-Stokes equations on polygonal domains with mixed boundary conditions theory and approximation Research Collection Doctoral Thesis The Navier-Stokes equations on polygonal domains with mixed boundary conditions theory and approximation Author(s): Brun, Markus Publication Date: 2002 Permanent Link:

Mehr

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesn"t start automatically

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesnt start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Click here if your download doesn"t start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Ein Stern in dunkler

Mehr

Soll der Staat aktiv Innovationen fördern? Das Beispiel Airbus A400M

Soll der Staat aktiv Innovationen fördern? Das Beispiel Airbus A400M Wirtschaft Tobias Karcher Soll der Staat aktiv Innovationen fördern? Das Beispiel Airbus A400M Bachelorarbeit Bibliografische Information der Deutschen Nationalbibliothek: Die Deutsche Bibliothek verzeichnet

Mehr

Übungsblatt 6. Analysis 1, HS14

Übungsblatt 6. Analysis 1, HS14 Übungsblatt 6 Analysis, HS4 Ausgabe Donnerstag, 6. Oktober. Abgabe Donnerstag, 23. Oktober. Bitte Lösungen bis spätestens 7 Uhr in den Briefkasten des jeweiligen Übungsleiters am J- oder K-Geschoss von

Mehr

Martin Luther. Click here if your download doesn"t start automatically

Martin Luther. Click here if your download doesnt start automatically Die schönsten Kirchenlieder von Luther (Vollständige Ausgabe): Gesammelte Gedichte: Ach Gott, vom Himmel sieh darein + Nun bitten wir den Heiligen Geist... der Unweisen Mund... (German Edition) Martin

Mehr

Cycling. and / or Trams

Cycling. and / or Trams Cycling and / or Trams Experiences from Bern, Switzerland Roland Pfeiffer, Departement for cycling traffic, City of Bern Seite 1 A few words about Bern Seite 2 A few words about Bern Capital of Switzerland

Mehr

USBASIC SAFETY IN NUMBERS

USBASIC SAFETY IN NUMBERS USBASIC SAFETY IN NUMBERS #1.Current Normalisation Ropes Courses and Ropes Course Elements can conform to one or more of the following European Norms: -EN 362 Carabiner Norm -EN 795B Connector Norm -EN

Mehr

FIVNAT-CH. Annual report 2002

FIVNAT-CH. Annual report 2002 FIVNAT-CH Schweizerische Gesellschaft für Reproduktionsmedizin Annual report 2002 Date of analysis 15.01.2004 Source: FileMaker Pro files FIVNAT_CYC.FP5 and FIVNAT_PAT.FP5 SUMMARY TABLE SUMMARY RESULTS

Mehr

Integer Convex Minimization in Low Dimensions

Integer Convex Minimization in Low Dimensions DISS. ETH NO. 22288 Integer Convex Minimization in Low Dimensions A thesis submitted to attain the degree of DOCTOR OF SCIENCES of ETH ZURICH (Dr. sc. ETH Zurich) presented by TIMM OERTEL Diplom-Mathematiker,

Mehr

Molecular dynamics simulation of confined multiphasic systems

Molecular dynamics simulation of confined multiphasic systems VI. International Conference on Computational Fluid Dynamics Molecular dynamics simulation of confined multiphasic systems St. Petersburg, July 15, 2010 G. C. Lehmann, C. Dan, J. Harting, M. Heitzig, M.

Mehr

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition)

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Philipp Heckele Click here if your download doesn"t start automatically Download and Read Free Online Funktion

Mehr

Pilot Project Biogas-powered Micro-gas-turbine

Pilot Project Biogas-powered Micro-gas-turbine 1/18 Pilot Project Biogas-powered Micro-gas-turbine Supported by the Hessischen Ministerium für Wirtschaft, Verkehr und Landesentwicklung Speaker Details 2/18 Jan Müller Works at Institute of Solar Energy

Mehr

AS Path-Prepending in the Internet And Its Impact on Routing Decisions

AS Path-Prepending in the Internet And Its Impact on Routing Decisions (SEP) Its Impact on Routing Decisions Zhi Qi ytqz@mytum.de Advisor: Wolfgang Mühlbauer Lehrstuhl für Netzwerkarchitekturen Background Motivation BGP -> core routing protocol BGP relies on policy routing

Mehr

Contaminant Mass Discharge Estimation in Groundwater Based on Multi-Level Well Data. Evaluation of Expected Errors. Markus Kübert, Michael Finkel

Contaminant Mass Discharge Estimation in Groundwater Based on Multi-Level Well Data. Evaluation of Expected Errors. Markus Kübert, Michael Finkel Contaminant Mass Discharge Estimation in Groundwater Based on Multi-Level Well Data Evaluation of Expected Errors Markus Kübert, Michael Finkel Center for Applied Geoscience, University of Tübingen Decision-Support

Mehr

Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents

Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents Login... 2 No active procedure at the moment... 3 'Active' procedure... 4 New communication (procedure

Mehr

Mixed tenses revision: German

Mixed tenses revision: German Mixed tenses revision: Gman Teaching notes This is a whole class game in wh one team (the red team) has to try to win hexagons in a row across the PowPoint grid from left to right, while the oth team (the

Mehr

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Chapter: Operational Amplifiers / Operationsverstärker Michael E. Auer Source of figures: Alexander/Sadiku: Fundamentals of Electric

Mehr

Primärspannungsmessungen mit der. CSIRO Triaxialzelle

Primärspannungsmessungen mit der. CSIRO Triaxialzelle Blatt Nr.: 1 STRESS CELL REDUCTION PROGRAM ******************************** ******************************** Authorized & accredited by the CSIRO Division of Geomechanics. Copyright Mindata Ltd, July 1990

Mehr

How-To-Do. Communication to Siemens OPC Server via Ethernet

How-To-Do. Communication to Siemens OPC Server via Ethernet How-To-Do Communication to Siemens OPC Server via Content 1 General... 2 1.1 Information... 2 1.2 Reference... 2 2 Configuration of the PC Station... 3 2.1 Create a new Project... 3 2.2 Insert the PC Station...

Mehr

Grundlagen der Rekonstruktion bei bildgebenden 3D-Schichtverfahren

Grundlagen der Rekonstruktion bei bildgebenden 3D-Schichtverfahren Grundlagen der Rekonstruktion bei bildgebenden 3D-Schichtverfahren Im Rahmen des 8. Fortbildungsseminars der Arbeitsgemeinschaften Physik und Technik der DRG (APT) und der DGMP (K22) in Magdeburg am 18.

Mehr

Newest Generation of the BS2 Corrosion/Warning and Measurement System

Newest Generation of the BS2 Corrosion/Warning and Measurement System Newest Generation of the BS2 Corrosion/Warning and Measurement System BS2 System Description: BS2 CorroDec 2G is a cable and energyless system module range for detecting corrosion, humidity and prevailing

Mehr

Simulation of Longitudinal Beam Dynamics

Simulation of Longitudinal Beam Dynamics Fachgebiet Theoretische Elektrotechnik und Numerische Feldberechnung PD Dr. Markus Clemens DESY Beam Dynamics Meeting Simulation of Longitudinal Beam Dynamics, Markus Clemens Chair for Theory in Electrical

Mehr

Research Collection. Backward stochastic differential equations with super-quadratic growth. Doctoral Thesis. ETH Library. Author(s): Bao, Xiaobo

Research Collection. Backward stochastic differential equations with super-quadratic growth. Doctoral Thesis. ETH Library. Author(s): Bao, Xiaobo Research Collection Doctoral Thesis Backward stochastic differential equations with super-quadratic growth Author(s): Bao, Xiaobo Publication Date: 2009 Permanent Link: https://doi.org/10.3929/ethz-a-005955736

Mehr

Wakefield computation of PETRAIII taper section Laura Lünzer

Wakefield computation of PETRAIII taper section Laura Lünzer Wakefield computation of PETRAIII taper section Laura Lünzer 16. Dezember 2011 TU Darmstadt Fachbereich 18 Institut Theorie Elektromagnetischer Felder Laura Lünzer Geometry of tapered structure Undulator

Mehr

DIBELS TM. German Translations of Administration Directions

DIBELS TM. German Translations of Administration Directions DIBELS TM German Translations of Administration Directions Note: These translations can be used with students having limited English proficiency and who would be able to understand the DIBELS tasks better

Mehr

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB Read Online and Download Ebook PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB DOWNLOAD EBOOK : PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: Click link bellow

Mehr

Deceleration Technology. Rotary Dampers mit hohem Drehmoment WRD-H 2515 WRD-H 3015 WRD-H 4025 WRD-H

Deceleration Technology. Rotary Dampers mit hohem Drehmoment WRD-H 2515 WRD-H 3015 WRD-H 4025 WRD-H Rotary Dampers mit hohem Drehmoment WRD-H 2515 WRD-H 3015 WRD-H 4025 WRD-H 6030 Deceleration Technology ONLINE CALCULATION AND 2D / 3D CAD DOWNLOAD M m L F Benefits Material: - Aluminium and steel Applications:

Mehr

Prediction Market, 28th July 2012 Information and Instructions. Prognosemärkte Lehrstuhl für Betriebswirtschaftslehre insbes.

Prediction Market, 28th July 2012 Information and Instructions. Prognosemärkte Lehrstuhl für Betriebswirtschaftslehre insbes. Prediction Market, 28th July 2012 Information and Instructions S. 1 Welcome, and thanks for your participation Sensational prices are waiting for you 1000 Euro in amazon vouchers: The winner has the chance

Mehr

Level 2 German, 2013

Level 2 German, 2013 91126 911260 2SUPERVISOR S Level 2 German, 2013 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 9.30 am Monday 11 November 2013 Credits: Five

Mehr

POST MARKET CLINICAL FOLLOW UP

POST MARKET CLINICAL FOLLOW UP POST MARKET CLINICAL FOLLOW UP (MEDDEV 2.12-2 May 2004) Dr. med. Christian Schübel 2007/47/EG Änderungen Klin. Bewertung Historie: CETF Report (2000) Qualität der klinischen Daten zu schlecht Zu wenige

Mehr

Pressglas-Korrespondenz

Pressglas-Korrespondenz Stand 14.01.2016 PK 2015-3/56 Seite 1 von 5 Seiten Abb. 2015-3/56-01 und Abb. 2015-3/56-02 Vase mit drei Gesichtern: Frau, Mann und Kind, farbloses Pressglas, teilweise mattiert, H 18,8 cm, D 15 cm Vase

Mehr

Musterlösung 3. D-MATH Algebra I HS 2015 Prof. Richard Pink. Faktorielle Ringe, Grösster gemeinsamer Teiler, Ideale, Faktorringe

Musterlösung 3. D-MATH Algebra I HS 2015 Prof. Richard Pink. Faktorielle Ringe, Grösster gemeinsamer Teiler, Ideale, Faktorringe D-MATH Algebra I HS 2015 Prof. Richard Pink Musterlösung 3 Faktorielle Ringe, Grösster gemeinsamer Teiler, Ideale, Faktorringe 1. Sei K ein Körper. Zeige, dass K[X 2, X 3 ] K[X] ein Integritätsbereich,

Mehr

Übung 3: VHDL Darstellungen (Blockdiagramme)

Übung 3: VHDL Darstellungen (Blockdiagramme) Übung 3: VHDL Darstellungen (Blockdiagramme) Aufgabe 1 Multiplexer in VHDL. (a) Analysieren Sie den VHDL Code und zeichnen Sie den entsprechenden Schaltplan (mit Multiplexer). (b) Beschreiben Sie zwei

Mehr

Mitglied der Leibniz-Gemeinschaft

Mitglied der Leibniz-Gemeinschaft Methods of research into dictionary use: online questionnaires Annette Klosa (Institut für Deutsche Sprache, Mannheim) 5. Arbeitstreffen Netzwerk Internetlexikografie, Leiden, 25./26. März 2013 Content

Mehr

The process runs automatically and the user is guided through it. Data acquisition and the evaluation are done automatically.

The process runs automatically and the user is guided through it. Data acquisition and the evaluation are done automatically. Q-App: UserCal Advanced Benutzerdefinierte Kalibrierroutine mit Auswertung über HTML (Q-Web) User defined calibration routine with evaluation over HTML (Q-Web) Beschreibung Der Workflow hat 2 Ebenen eine

Mehr

Getting started with MillPlus IT V530 Winshape

Getting started with MillPlus IT V530 Winshape Getting started with MillPlus IT V530 Winshape Table of contents: Deutsche Bedienungshinweise zur MillPlus IT V530 Programmierplatz... 3 English user directions to the MillPlus IT V530 Programming Station...

Mehr

Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition)

Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition) Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition) Kenny Lang, Marvin Wolf, Elke Weiss Click here if your download doesn"t start automatically Konkret - der Ratgeber:

Mehr

KURZANLEITUNG. Firmware-Upgrade: Wie geht das eigentlich?

KURZANLEITUNG. Firmware-Upgrade: Wie geht das eigentlich? KURZANLEITUNG Firmware-Upgrade: Wie geht das eigentlich? Die Firmware ist eine Software, die auf der IP-Kamera installiert ist und alle Funktionen des Gerätes steuert. Nach dem Firmware-Update stehen Ihnen

Mehr

https://cuvillier.de/de/shop/publications/6886

https://cuvillier.de/de/shop/publications/6886 Kristofer Leach (Autor) Modelling Force Transfer in Boundary Layers of Moving Walls for Compressible and Incompressible Turbulent Flows Across Multiple Scales https://cuvillier.de/de/shop/publications/6886

Mehr

ONLINE LICENCE GENERATOR

ONLINE LICENCE GENERATOR Index Introduction... 2 Change language of the User Interface... 3 Menubar... 4 Sold Software... 5 Explanations of the choices:... 5 Call of a licence:... 7 Last query step... 9 Call multiple licenses:...

Mehr

Numerical Analysis of a Radiant Syngas Cooler

Numerical Analysis of a Radiant Syngas Cooler Numerical Analysis of a Radiant Syngas Cooler Folie 2, Dr.-Ing. Gerd Oeljeklaus, Universität Duisburg-Essen Universität Duisburg-Essen Prof. Dr.-Ing., Universität Duisburg-Essen - Ulrich Günther Siemens

Mehr

prorm Budget Planning promx GmbH Nordring Nuremberg

prorm Budget Planning promx GmbH Nordring Nuremberg prorm Budget Planning Budget Planning Business promx GmbH Nordring 100 909 Nuremberg E-Mail: support@promx.net Content WHAT IS THE prorm BUDGET PLANNING? prorm Budget Planning Overview THE ADVANTAGES OF

Mehr

Level 2 German, 2016

Level 2 German, 2016 91126 911260 2SUPERVISOR S Level 2 German, 2016 91126 Demonstrate understanding of a variety of written and / or visual German texts on familiar matters 2.00 p.m. Tuesday 29 November 2016 Credits: Five

Mehr

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition)

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Click here if your download doesn"t start automatically Die besten Chuck Norris Witze: Alle Fakten über den

Mehr

GRIPS - GIS basiertes Risikoanalyse-, Informations- und Planungssystem

GRIPS - GIS basiertes Risikoanalyse-, Informations- und Planungssystem GRIPS - GIS basiertes Risikoanalyse-, Informations- und Planungssystem GIS based risk assessment and incident preparation system Gregor Lämmel TU Berlin GRIPS joined research project TraffGo HT GmbH Rupprecht

Mehr

Attention: Give your answers to tasks 1 and 2 directly below the questions in the exam question sheet.

Attention: Give your answers to tasks 1 and 2 directly below the questions in the exam question sheet. Page 1 120 minutes LAST NAME FIRST NAME MATRIKEL-NO. Attention: Give your answers to tasks 1 and 2 directly below the questions in the exam question sheet. You are NOT allowed to use a pencil and also

Mehr

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient Filing system designer FileDirector Version 2.5 Novelties FileDirector offers an easy way to design the filing system in WinClient. The filing system provides an Explorer-like structure in WinClient. The

Mehr

Hydroinformatik II Prozess-Simulation und Systemanalyse

Hydroinformatik II Prozess-Simulation und Systemanalyse Version 3.01-13. Oktober 2011 Hydroinformatik II Prozess-Simulation und Systemanalyse Prof. Dr.-Ing. Olaf Kolditz TU Dresden / UFZ Leipzig Angewandte Umweltsystemanalyse Umweltinformatik WS 2011/2012 c

Mehr

Final Exam. Friday June 4, 2008, 12:30, Magnus-HS

Final Exam. Friday June 4, 2008, 12:30, Magnus-HS Stochastic Processes Summer Semester 2008 Final Exam Friday June 4, 2008, 12:30, Magnus-HS Name: Matrikelnummer: Vorname: Studienrichtung: Whenever appropriate give short arguments for your results. In

Mehr

2011 European HyperWorks Technology Conference

2011 European HyperWorks Technology Conference 2011 European HyperWorks Technology Conference Topology Optimization Methods applied to Automotive Transmission Housings 1 Agenda Introduction - Corporate Information - overview Topology Optimization for

Mehr

How-To-Do. OPC-Server with MPI and ISO over TCP/IP Communication. Content. How-To-Do OPC-Server with MPI- und ISO over TCP/IP Communication

How-To-Do. OPC-Server with MPI and ISO over TCP/IP Communication. Content. How-To-Do OPC-Server with MPI- und ISO over TCP/IP Communication How-To-Do OPC-Server with MPI and ISO over TCP/IP Content OPC-Server with MPI and ISO over TCP/IP... 1 1 General... 2 1.1 Information... 2 1.2 Reference... 2 2 Procedure for the Setup of the OPC Server...

Mehr

Instruktionen Mozilla Thunderbird Seite 1

Instruktionen Mozilla Thunderbird Seite 1 Instruktionen Mozilla Thunderbird Seite 1 Instruktionen Mozilla Thunderbird Dieses Handbuch wird für Benutzer geschrieben, die bereits ein E-Mail-Konto zusammenbauen lassen im Mozilla Thunderbird und wird

Mehr

Materialien zu unseren Lehrwerken

Materialien zu unseren Lehrwerken Word order Word order is important in English. The word order for subjects, verbs and objects is normally fixed. The word order for adverbial and prepositional phrases is more flexible, but their position

Mehr

Anwendungs hinweise Application hints

Anwendungs hinweise Application hints 02/2006 vers02/2013 Schallleistungspegelmessungen FRS & DMV DUNGS hat für die Gerätefamilien Gasdruckregelgeräte FRS (DN 50 - DN 150) und Doppelmagnetventile DMV/11 und DMV/12 (DN 50 - DN 125) Schallleistungspegelmessungen

Mehr

Fakultät III Univ.-Prof. Dr. Jan Franke-Viebach

Fakultät III Univ.-Prof. Dr. Jan Franke-Viebach 1 Universität Siegen Fakultät III Univ.-Prof. Dr. Jan Franke-Viebach Klausur Monetäre Außenwirtschaftstheorie und politik / International Macro Wintersemester 2011-12 (1. Prüfungstermin) Bearbeitungszeit:

Mehr