Turbulence in geodynamo simulations

Size: px
Start display at page:

Download "Turbulence in geodynamo simulations"

Transcription

1 Turbulence in geodynamo simulations Nathanaël Schaeffer, A. Fournier, D. Jault, J. Aubert, H-C. Nataf,... ISTerre / CNRS / Université Grenoble Alpes Journée des utilisateurs CIMENT, Grenoble, 23 June 2016 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

2 Outline 1 Introduction 2 The XSHELLS code Equations The SHTns library Parallelization strategy and tricks 3 Turbulence in geodynamo simulations nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

3 Cool facts about the Earth s core A broad range of time-scales from months (SV) to million years (reversals) Viscosity of water very low Ekman number E Large scale motions at the top of the core have speeds around 10 km/year (0.3 mm/sec, turnover time is about 200 years) Turbulent motion (very high Reynolds number Re 10 8 ). Magnetic Reynolds number Rm 1000 (Pm 10 5 ) Very low Rossby number Ro Magnetic field is dominated by a tilted dipole. Magnetic energy dominates kinetic energy by a factor 10 4 (4 mt estimated in the core, 0.5 mt or 5 gauss at the surface). Very low Lehnert number (Rossby based on Alfvén speed) Le Heat flux extracted by the mantle ( 10TW, < 100mW/m 2 ). Strong convection (very high Rayleigh number Ra 10 20? Probably many times critical). nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

4 Broad questions Turbulence: does it matter? How? What do the flow and magnetic field look like? What are the basic equilibriums? Can we build a reduced model? nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

5 Broad questions Turbulence: does it matter? How? What do the flow and magnetic field look like? What are the basic equilibriums? Can we build a reduced model? Observations: short time-scales (a few years) Importance of waves? Length-of-day variations? Effect of a stable ocean at the top of the core? nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

6 Basic rotating MHD in planetary cores Navier-Stokes equation t u + (2Ω e z + u) u = p + ν u+ ( b) b αg T r Induction equation Temperature equation t b = (u b) +η b t T + u. T = κ T E = ν/d 2 Ω Ra = T αgd 3 /κν 1 (?) Pm = νµ 0 σ 10 5 Pr = ν/κ 1 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

7 Outline 1 Introduction 2 The XSHELLS code Equations The SHTns library Parallelization strategy and tricks 3 Turbulence in geodynamo simulations nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

8 MHD forced by Boussinesq convection XSHELLS time-steps the following equations: t u + (2Ω 0 + u) u = p + ν u + ( b) b + c Φ 0 t b = (u b) + η b t c + u. (c + C 0 ) = κ c u = 0.b = 0 Spherical shell geometry Fields expanded using u = (T r) + (Pr) Spherical Harmonic expansion, with transforms done by SHTns Finite differences in radius Semi-implicit scheme: diffusive terms are implicit, while other terms are treated explicitly. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

9 Why Spherical Harmonics transform? The goal was to use spherical harmonics to time-step Navier-Stokes and related equations in spherical geometry. Pros Advantage of spectral methods Cons Don t need to solve for magnetic field in the insulator. Strongly reduces the number of variables to solve for. No working fast transform: O(N 3 ) for N 2 degrees of freedom. Non-local (more difficult to parallelize) nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

10 Why Spherical Harmonics transform? The goal was to use spherical harmonics to time-step Navier-Stokes and related equations in spherical geometry. Pros Advantage of spectral methods Cons Don t need to solve for magnetic field in the insulator. Strongly reduces the number of variables to solve for. No working fast transform: O(N 3 ) for N 2 degrees of freedom. Non-local (more difficult to parallelize) Spherical Harmonics Transform (SHT) is the bottleneck nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

11 SHTns: outstanding features Matrix-free algorithm: computing recurrence on-the-fly is faster than reading from memory [unless matrix-matrix product is used], and you save a lot of memory too. Hand vectorized, yet easily portable (currently supports Intel SSE2, AVX, AVX2+FMA, MIC ; IBM Blue Gene/Q) SHTns perf scales with microarchitecture: x2 w/sse2, x4 w/avx, x8 w/avx2+fma... x16 w/avx512? It also means the gap between classic implementations and SHTns will increase. Efficient OpenMP parallelization (not yet used by XSHELLS) Reach 80% to 90% of peak performance on Intel SandyBridge. N. Schaeffer, Efficient Spherical Harmonic Transforms aimed at pseudo-spectral numerical simulations, Gcubed, nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

12 SHTns: other interesting features both scalar and vector transforms. accurate up to spherical harmonic degree l = (at least). SHT at fixed m (without fft, aka Legendre transform). spatial data can be stored in latitude-major or longitude-major arrays. various normalization conventions. can be used from Fortran, c/c++, and Python programs. free software : nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

13 Parallelization strategy hybrid MPI/OpenMP parallelization Increase Data Locality: work shell by shell for spatial terms (do not compute the whole spatial fields at once: lower memory required and faster). Distribute shells to MPI processes (at least 1 shell/process). No transposition required (no MPI Alltoall()), communication with nearest neighbor only. Use OpenMP within these processes (tested up to 32 threads/shell) good scaling (e.g x 1344 x 6912 cores : 0.8 sec/step on Occigen) nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

14 Strategy non-linear terms Design choice: optimize the computation of non-linear terms first. Trick 1: Use SHTns J. Aubert plugged SHTns into Parody and observed a performance increase by a factor of about 2 for the whole code. lower memory required, faster, ready for future architectures. Trick 2: Increase Data Locality Work shell by shell when computing spatial terms (do not compute the whole spatial fields at once). lower memory required and significantly faster. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

15 Strategy linear solver The linear solver is computationally very cheap. It should deal with the data as it is arranged for the non-linear terms to be most efficient. Trick 3: Avoid transpositions and large copies Transposition is always slow (with and without MPI communications) Copying large amounts of data can also be quite slow. Problem: the forward (backward) substitutions depend on the data computed by previous (next) processes. (ISTerre) Earth s core simulations CIMENT 23 June / 29

16 Strategy blocked linear solver Solution to data dependency in the linear solver: split shells into independent blocks. rank k compute rank k+1 rank k+2 xfer compute xfer compute t rank k rank k+1 rank k+2 t Trick 4: Use self-tuning The optimal number of blocks is system dependent: trade off between wait time and transfer overhead. Find the best number of blocks at startup. 30 folds observed performance increase compared to naive solver. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

17 Summary: spherical MHD simulations with XSHELLS Spherical harmonics, finite differences (radial), versatile, very efficient even on your laptop, OpenMP and/or MPI parallelization with good scaling, open source, with user manual. seconds per iteration Performance scaling of xshells (NR=512, Lmax=511) Froggy (SandyBridge) radial OpenMP Froggy (SandyBridge) in-shell OpenMP Turing (Blue Gene/Q) in-shell OpenMP number of cores Figure 1: Strong scaling of XSHELLS with spatial resolution N r = 512, L max = nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

18 Outline 1 Introduction 2 The XSHELLS code 3 Turbulence in geodynamo simulations nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

19 The model with: Earth s core geometry (Sphere) thermochemical convection (codensity, 75% chemical driving, Aubert et al 2009); no-slip, and fixed flux homogeneous boundary conditions high rotation rate, low viscosity strong forcing (more than 4000 times critical) 1 Ekman number E = ν/d 2 Ω 2 Rayleigh number Ra = T αgd 3 /κν 3 Magnetic prandtl number Pm = νµ 0 σ 4 (Thermal) Prandtl number Pr = 1. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

20 The simulations The idea Keep super-criticality and Rm = UD/η 650 fixed. go to more Earth-like A = U/B and Pm = ν/η Earth Soderlund et. al Christensen & Aubert 2006 Andrey Sheyko 2014 Other simulations Highway initial: E = 10 5, Pm = 0.4, Ra = A = 1.5 F ν = 47% A Pm nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

21 The simulations The idea Keep super-criticality and Rm = UD/η 650 fixed. go to more Earth-like A = U/B and Pm = ν/η. A Earth Soderlund et. al Christensen & Aubert 2006 Andrey Sheyko 2014 Other simulations Highway initial: E = 10 5, Pm = 0.4, Ra = A = 1.5 F ν = 47% jump 1: E = 10 6, Pm = 0.2, Ra = A = 0.61 F ν = 24% Pm nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

22 The simulations The idea Keep super-criticality and Rm = UD/η 650 fixed. go to more Earth-like A = U/B and Pm = ν/η. A Earth Soderlund et. al Christensen & Aubert 2006 Andrey Sheyko 2014 Other simulations Highway Pm initial: E = 10 5, Pm = 0.4, Ra = A = 1.5 F ν = 47% jump 1: E = 10 6, Pm = 0.2, Ra = A = 0.61 F ν = 24% jump 2: E = 10 7, Pm = 0.1, Ra = A = 0.45 F ν = 17% Extreme parameters, require 2688 x 1344 x 1024 points (3.7 billions) 7 months computation on 512 cores (10.5 sec/step) nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

23 Energy vs Time 10 9 S2: E = 10 7 Pm = 0: 1 S1*: E = 10 6 Pm = 0 energy 10 8 jump 2 jump 1 S1: E = 10 6 Pm = 0: S0: E = 10 5 Pm = 0: t =2¼ Jump 2 ran for 1.5% of a magnetic diffusion time, and it took about 7 months to compute on 512 cores, spending 2.5 million core hours. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

24 Snapshot: initial U φ (E = 10 5, Pm = 0.4, A = 1.5) NR = 224, L max = 191 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

25 Snapshot: jump 1 U φ (E = 10 6, Pm = 0.2, A = 0.62) NR = 512, L max = 479 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

26 Snapshot: jump 2 U φ (E = 10 7, Pm = 0.1, A = 0.43) NR = 1024, L max = 893 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

27 Jump 2: Temperature field Mean temperature of each shell has been removed. (ISTerre) Earth s core simulations CIMENT 23 June / 29

28 Averages of U and B U B nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

29 Jump 2: Non-zonal mean flow Homegeneous heat flux start to produce large scale flows at E = 10 7 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

30 Jump 2: Space-time Fourier analysis Fourier Transform in the two homogeneous directions: t and φ. Two different regions inside and outside the tangent cylinder. E = 10 7, Pm = 0.1 nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

31 Jump 2: Space-time Fourier analysis Main balance of terms in vorticity equation: (ISTerre) Earth s core simulations CIMENT 23 June / 29

32 Jump 1: Influence of the magnetic field 71e8 6 5 Ek, step1 Em, step1 Ek, no B energy time (viscous) Figure 2: Energies as a function of time (normalized by the viscous diffusion time) for case jump 1 (E = 10 6 ) and for the same parameters as jump 1, but without magnetic field. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

33 Jump 1: Influence of the magnetic field With a strong dynamo magnetic field: Zonal jets are suppressed, plumes extend further. Larger plumes but convection still starts at small length-scale! (E 1/3 ). nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

34 Some numbers definition initial jump 1 jump 2 Earth s core N r L max Ek ν/d 2 Ω Ra T αgd 3 /κν ? Pm ν/η Pr ν/κ Rm UD/η ? A µρu/b Re UD/ν Ro U/DΩ Le B/ µρdω Λ B 2 /ηω F ν D ν /(D η + D ν ) 47% 24% 17%? F η D η /(D η + D ν ) 53% 76% 83%? Table 1: Various input and output parameters of our simulations, where D is the shell thickness, U the rms velocity and B the rms magnetic field. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

35 Jump 2: spectra Ek deep Ek surface Em deep Em surface l/r E = 10 7 Pm = 0.1 Ra = Rm = 600 A = 0.45 Λ = 1.2 F ν = 17% NR = 1024 L max = 893 Magnetic field dominates deep in the core but not near the surface. Velocity spectrum nearly flat at the surface but increasing deep down. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

36 Jump 2: z-averaged energy densities z-averaged equatorial energy densities, left: < U 2 eq >, right: < B 2 eq >. E = 10 7, Pm = 0.1, Rm = 600, A nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

37 20 years of geodynamo simulations 1995 : Glatzmaier & Roberts Chebychev, 64 x 32 x 49 hyperviscosity Earth-like, reversals, and all the hype. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

38 20 years of geodynamo simulations 1995 : Glatzmaier & Roberts Chebychev, 64 x 32 x 49 hyperviscosity Earth-like, reversals, and all the hype : Christensen & Aubert Chebychev, 168 x 336 x 97 E = , Pm=0.06 Extensive parameter study, scaling laws. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

39 20 years of geodynamo simulations 1995 : Glatzmaier & Roberts Chebychev, 64 x 32 x 49 hyperviscosity Earth-like, reversals, and all the hype : Christensen & Aubert Chebychev, 168 x 336 x 97 E = , Pm=0.06 Extensive parameter study, scaling laws : Kageyama et. al. Yin-Yang grid, 2048 x 1024 x 511 E = 10 6, Re=700, Pm=1 convection sheets, zonal jets. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

40 20 years of geodynamo simulations 1995 : Glatzmaier & Roberts Chebychev, 64 x 32 x 49 hyperviscosity Earth-like, reversals, and all the hype : Christensen & Aubert Chebychev, 168 x 336 x 97 E = , Pm=0.06 Extensive parameter study, scaling laws : Kageyama et. al. Yin-Yang grid, 2048 x 1024 x 511 E = 10 6, Re=700, Pm=1 convection sheets, zonal jets : Sakuraba & Roberts Chebychev, 768 x 384 x 160 E = , Re=650, Pm=0.2 Fixed heat flux leads to stronger magnetic field. nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

41 20 years of geodynamo simulations 1995 : Glatzmaier & Roberts Chebychev, 64 x 32 x 49 hyperviscosity Earth-like, reversals, and all the hype : Christensen & Aubert Chebychev, 168 x 336 x 97 E = , Pm=0.06 Extensive parameter study, scaling laws : Kageyama et. al. Yin-Yang grid, 2048 x 1024 x 511 E = 10 6, Re=700, Pm=1 convection sheets, zonal jets : Sakuraba & Roberts Chebychev, 768 x 384 x 160 E = , Re=650, Pm=0.2 Fixed heat flux leads to stronger magnetic field. Many others nathanael.schaeffer@ujf-grenoble.fr (ISTerre) Earth s core simulations CIMENT 23 June / 29

Rotating dynamo turbulence: theoretical and numerical insights

Rotating dynamo turbulence: theoretical and numerical insights Rotating dynamo turbulence: theoretical and numerical insights Nathanaël Schaeffer 1, H.-C. Nataf 1, A. Fournier 2, J. Aubert 2, D. Jault 1, F. Plunian 1, P. Zitzke 1 1: ISTerre / CNRS /Université Joseph

More information

Turbulent geodynamo simulations: a leap towards Earth s core

Turbulent geodynamo simulations: a leap towards Earth s core Turbulent geodynamo simulations: a leap towards Earth s core N. Schaeffer 1, D. Jault 1, H.-C. Nataf 1, A. Fournier 2 1 Univ. Grenoble Alpes, CNRS, ISTerre, F-38000 Grenoble, France arxiv:1701.01299v3

More information

Generation of magnetic fields by large-scale vortices in rotating convection

Generation of magnetic fields by large-scale vortices in rotating convection Generation of magnetic fields by large-scale vortices in rotating convection Céline Guervilly, David Hughes & Chris Jones School of Mathematics, University of Leeds, UK Generation of the geomagnetic field

More information

Convection-driven dynamos in the limit of rapid rotation

Convection-driven dynamos in the limit of rapid rotation Convection-driven dynamos in the limit of rapid rotation Michael A. Calkins Jonathan M. Aurnou (UCLA), Keith Julien (CU), Louie Long (CU), Philippe Marti (CU), Steven M. Tobias (Leeds) *Department of Physics,

More information

Geodynamo Simulations and Electromagnetic Induction Studies

Geodynamo Simulations and Electromagnetic Induction Studies Chapter 2 Solid Earth Simulation Geodynamo Simulations and Electromagnetic Induction Studies Project Representative Yozo Hamano Japan Agency for Marine-Earth Science and Technology Authors Yozo Hamano

More information

On the Generation of Core Dynamo Action

On the Generation of Core Dynamo Action On the Generation of Core Dynamo Action CIDER Meeting, KITP 7/7/16 Jonathan Aurnou UCLA Earth & Space Sciences aurnou@ucla.edu Beyond record players? Treat core dynamics as a rotating magnetoconvection

More information

Magnetic and velocity fields in a dynamo operating at extremely small Ekman and magnetic Prandtl numbers

Magnetic and velocity fields in a dynamo operating at extremely small Ekman and magnetic Prandtl numbers Contributions to Geophysics and Geodesy Vol. 47/4, 2017 (261 276) Magnetic and velocity fields in a dynamo operating at extremely small Ekman and magnetic Prandtl numbers Ján ŠIMKANIN,Juraj KYSELICA Institute

More information

Simulation Study on the Generation and Distortion Process of the Geomagnetic Field in Earth-like Conditions

Simulation Study on the Generation and Distortion Process of the Geomagnetic Field in Earth-like Conditions Chapter 1 Earth Science Simulation Study on the Generation and Distortion Process of the Geomagnetic Field in Earth-like Conditions Project Representative Yozo Hamano Authors Ataru Sakuraba Yusuke Oishi

More information

Exploring the physics of the Earth s core with numerical simulations

Exploring the physics of the Earth s core with numerical simulations Exploring the physics of the Earth s core with numerical simulations Nathanaël Schaeffer To cite this version: Nathanaël Schaeffer. Exploring the physics of the Earth s core with numerical simulations.

More information

Fluctuation dynamo amplified by intermittent shear bursts

Fluctuation dynamo amplified by intermittent shear bursts by intermittent Thanks to my collaborators: A. Busse (U. Glasgow), W.-C. Müller (TU Berlin) Dynamics Days Europe 8-12 September 2014 Mini-symposium on Nonlinear Problems in Plasma Astrophysics Introduction

More information

Numerical Modelling in Fortran: day 8. Paul Tackley, 2017

Numerical Modelling in Fortran: day 8. Paul Tackley, 2017 Numerical Modelling in Fortran: day 8 Paul Tackley, 2017 Today s Goals 1. Introduction to parallel computing (applicable to Fortran or C; examples are in Fortran) 2. Finite Prandtl number convection Motivation:

More information

Dynamics in the Earth s core. Philippe Cardin, ISTerre, Université Grenoble Alpes et CNRS

Dynamics in the Earth s core. Philippe Cardin, ISTerre, Université Grenoble Alpes et CNRS Dynamics in the Earth s core Philippe Cardin, ISTerre, Université Grenoble Alpes et CNRS Doctoral training on internal Earth, Barcelonnette, oct 2016 Sources of motions inside the core Core cooling and

More information

Scaling properties of convection-driven dynamos in rotating spherical shells and application to planetary magnetic fields

Scaling properties of convection-driven dynamos in rotating spherical shells and application to planetary magnetic fields Geophys. J. Int. (006) 66, 97 4 doi: 0./j.365-46X.006.03009.x Scaling properties of convection-driven dynamos in rotating spherical shells and application to planetary magnetic fields U. R. Christensen

More information

Anisotropic turbulence in rotating magnetoconvection

Anisotropic turbulence in rotating magnetoconvection Anisotropic turbulence in rotating magnetoconvection André Giesecke Astrophysikalisches Institut Potsdam An der Sternwarte 16 14482 Potsdam MHD-Group seminar, 2006 André Giesecke (AIP) Anisotropic turbulence

More information

Case Study: Numerical Simulations of the Process by which Planets generate their Magnetic Fields. Stephan Stellmach UCSC

Case Study: Numerical Simulations of the Process by which Planets generate their Magnetic Fields. Stephan Stellmach UCSC Case Study: Numerical Simulations of the Process by which Planets generate their Magnetic Fields Stephan Stellmach UCSC 1 The Scientific Problem 2 The Magnetic Field of the Earth http://en.wikipedia.org/wiki/image:magnetosphere_rendition.jpg

More information

Planetary dynamos: Dipole-multipole transition and dipole reversals

Planetary dynamos: Dipole-multipole transition and dipole reversals Planetary dynamos: Dipole-multipole transition and dipole reversals Ulrich Christensen Max-Planck-Institute for Solar System Research Katlenburg-Lindau, Germany in collaboration with Hagay Amit, Julien

More information

GEODYNAMO SIMULATIONS HOW REALISTIC ARE THEY?

GEODYNAMO SIMULATIONS HOW REALISTIC ARE THEY? Annu. Rev. Earth Planet. Sci. 2002. 30:237 57 DOI: 10.1146/annurev.earth.30.091201.140817 Copyright c 2002 by Annual Reviews. All rights reserved GEODYNAMO SIMULATIONS HOW REALISTIC ARE THEY? Gary A. Glatzmaier

More information

Turbulent three-dimensional MHD dynamo model in spherical shells: Regular oscillations of the dipolar field

Turbulent three-dimensional MHD dynamo model in spherical shells: Regular oscillations of the dipolar field Center for Turbulence Research Proceedings of the Summer Program 2010 475 Turbulent three-dimensional MHD dynamo model in spherical shells: Regular oscillations of the dipolar field By R. D. Simitev, F.

More information

Reynolds-averaged turbulence model for magnetohydrodynamic dynamo in a rotating spherical shell

Reynolds-averaged turbulence model for magnetohydrodynamic dynamo in a rotating spherical shell PHYSICS OF PLASMAS VOLUME 11, NUMBER 11 NOVEMBER 2004 Reynolds-averaged turbulence model for magnetohydrodynamic dynamo in a rotating spherical shell Fujihiro Hamba a) Institute of Industrial Science,

More information

A numerical dynamo benchmark

A numerical dynamo benchmark Physics of the Earth and Planetary Interiors 128 (2001) 25 34 A numerical dynamo benchmark U.R. Christensen a,, J. Aubert b, P. Cardin b, E. Dormy c, S. Gibbons d, G.A. Glatzmaier e, E. Grote f, Y. Honkura

More information

A numerical study of dynamo action as a function of spherical shell geometry

A numerical study of dynamo action as a function of spherical shell geometry Earth and Planetary Science Letters 236 (2005) 542 557 www.elsevier.com/locate/epsl A numerical study of dynamo action as a function of spherical shell geometry M.H. Heimpel a, *, J.M. Aurnou b, F.M. Al-Shamali

More information

Towards a Faster Spherical Harmonic transform

Towards a Faster Spherical Harmonic transform Towards a Faster Spherical Harmonic transform Nathanaël Schaeffer LGIT / CNRS / Université Joseph Fourier IUGG CMG, Pisa, 7 May 2010 N. Schaeffer (LGIT/CNRS/UJF) Towards a faster SHT IUGG CMG, Pisa, 7

More information

Extracting scaling laws from numerical dynamo models

Extracting scaling laws from numerical dynamo models Extracting scaling laws from numerical dynamo models Z. Stelzer and A. Jackson Earth and Planetary Magnetism Group, ETH Zurich, Switzerland zacharias.stelzer@erdw.ethz.ch arxiv:1307.3938v1 [physics.geo-ph]

More information

Magnetic reversals from planetary dynamo waves

Magnetic reversals from planetary dynamo waves Letter doi:1.138/nature19842 Magnetic reversals from planetary dynamo waves Andrey Sheyko 1, Christopher C. Finlay 2 & Andrew Jackson 1 A striking feature of many natural dynamos is their ability to undergo

More information

Geophysical Journal International

Geophysical Journal International Geophysical Journal International Geophys. J. Int. (2014) 198, 828 847 GJI Geomagnetism, rock magnetism and palaeomagnetism doi: 10.1093/gji/ggu159 Predictive scaling laws for spherical rotating dynamos

More information

Scaling laws for dynamos in rotating spheres: from planets to stars

Scaling laws for dynamos in rotating spheres: from planets to stars Scaling laws for dynamos in rotating spheres: from planets to stars Ulrich Christensen Max Planck Institute for Solar System Research, Katlenburg- Lindau, Germany In collaboration with: Julien Aubert,

More information

Geophysical Journal International

Geophysical Journal International Geophysical Journal International Geophys. J. Int. (014) 197, 119 134 Advance Access publication 014 January 6 doi: 10.1093/gji/ggt518 Full sphere hydrodynamic and dynamo benchmarks P. Marti, 1, N. Schaeffer,

More information

Hydromagnetic dynamos in rotating spherical fluid shells in dependence on the Prandtl number and stratification

Hydromagnetic dynamos in rotating spherical fluid shells in dependence on the Prandtl number and stratification Hydromagnetic dynamos in rotating spherical fluid shells in dependence on the Prandtl number and stratification Ján Šimkanin and Pavel Hejda Institute of Geophysics, Academy of Sciences of CR, Prague,

More information

Emmanuel DORMY (CNRS / ENS)

Emmanuel DORMY (CNRS / ENS) Emmanuel DORMY (CNRS / ENS) dormy@phys.ens.fr The Earth s internal structure Mantle Fluid outer core ICB 3480 km 6366 km 1221 km Inner core CMB Roberts & King 2013 Governing Equations Governing Equations

More information

The time-averaged magnetic field in numerical dynamos with non-uniform boundary heat flow

The time-averaged magnetic field in numerical dynamos with non-uniform boundary heat flow Geophys. J. Int. (2002) 151, 809 823 The time-averaged magnetic field in numerical dynamos with non-uniform boundary heat flow Peter Olson 1 and U. R. Christensen 2 1 Department of Earth and Planetary

More information

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and education use, including for instruction at the authors institution

More information

Planetary Dynamos: A Brief Overview

Planetary Dynamos: A Brief Overview Planetary Dynamos: A Brief Overview Nick Featherstone Dept. of Applied Mathematics & Research Computing University of Colorado 04/22/15 HAO Colloquium Series 1 ( with contributions and inspiration from

More information

ARTICLE IN PRESS Physics of the Earth and Planetary Interiors xxx (2010) xxx xxx

ARTICLE IN PRESS Physics of the Earth and Planetary Interiors xxx (2010) xxx xxx Physics of the Earth and Planetary Interiors xxx (2010) xxx xxx Contents lists available at ScienceDirect Physics of the Earth and Planetary Interiors journal homepage: www.elsevier.com/locate/pepi Geodynamo

More information

Geomagnetic Dynamo Theory

Geomagnetic Dynamo Theory Max Planck Institute for Solar System Research Katlenburg-Lindau, Germany International School of Space Science Geomagnetism and Ionosphere L Aquila, Italy 7-11 April 2008 Outline Introduction 1 Introduction

More information

Power Requirements for Earth s Magnetic Field

Power Requirements for Earth s Magnetic Field Power Requirements for Earth s Magnetic Field QuickTime and a TIFF (Uncompressed) decompressor are needed to see this picture. Bruce Buffett University of Chicago Structure of the Earth Origin of Inner

More information

Turbulent convection in rapidly rotating spherical shells: A model for equatorial and high latitude jets on Jupiter and Saturn

Turbulent convection in rapidly rotating spherical shells: A model for equatorial and high latitude jets on Jupiter and Saturn Icarus 187 (2007) 540 557 www.elsevier.com/locate/icarus Turbulent convection in rapidly rotating spherical shells: A model for equatorial and high latitude jets on Jupiter and Saturn Moritz Heimpel a,,

More information

VARYING THE SPHERICAL SHELL GEOMETRY IN ROTATING THERMAL CONVECTION

VARYING THE SPHERICAL SHELL GEOMETRY IN ROTATING THERMAL CONVECTION Geophysical and Astrophysical Fluid Dynamics Vol. 98, No. 2, April 2004, pp. 153 169 VARYING THE SPHERICAL SHELL GEOMETRY IN ROTATING THERMAL CONVECTION F.M. AL-SHAMALI a, *, M.H. HEIMPEL a and J.M. AURNOU

More information

Stratified Convection Driven by Internal Heating

Stratified Convection Driven by Internal Heating Stratified Convection Driven by Internal Heating (a convective amplitudes talk) Nick Featherstone Collaborators: Brad Hindman Mark Miesch Juri Toomre The Rossby Number typical velocity v Rotational Timescale

More information

Hydromagnetic dynamos at the low Ekman and magnetic Prandtl numbers

Hydromagnetic dynamos at the low Ekman and magnetic Prandtl numbers Contributions to Geophysics and Geodesy Vol. 46/3, 2016 (221 244) Hydromagnetic dynamos at the low Ekman and magnetic Prandtl numbers Ján ŠIMKANIN Institute of Geophysics, Academy of Sciences of the Czech

More information

Diffusive magnetic images of upwelling patterns in the core

Diffusive magnetic images of upwelling patterns in the core JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 107, NO. B12, 2348, doi:10.1029/2001jb000384, 2002 Diffusive magnetic images of upwelling patterns in the core Peter Olson, Ikuro Sumita, 1 and Jonathan Aurnou 2 Department

More information

Fluctuations of electrical conductivity: a new source for astrophysical magnetic fields

Fluctuations of electrical conductivity: a new source for astrophysical magnetic fields Fluctuations of electrical conductivity: a new source for astrophysical magnetic fields F. Pétrélis, A. Alexakis, C. Gissinger 1 1 Laboratoire de Physique Statistique, Ecole Normale Supérieure, CNRS, Université

More information

Dynamo Scaling Laws and Applications to the Planets

Dynamo Scaling Laws and Applications to the Planets Space Sci Rev (2010) 152: 565 590 DOI 10.1007/s11214-009-9553-2 Dynamo Scaling Laws and Applications to the Planets U.R. Christensen Received: 6 February 2009 / Accepted: 8 June 2009 / Published online:

More information

A copy can be downloaded for personal non-commercial research or study, without prior permission or charge

A copy can be downloaded for personal non-commercial research or study, without prior permission or charge Marti, P., Schaeffer, N., Hollerbach, R., Cebron, D., Nore, C., Luddens, F., Guermond, J.L., Aubert, J., Takehiro, S., Sasaki, Y., Hayashi, Y., Simitev, R., Busse, F.H., Vantieghem, S., and Jackson, A.

More information

ES265 Order of Magnitude Phys & Chem Convection

ES265 Order of Magnitude Phys & Chem Convection ES265 Order of Magnitude Phys & Chem Convection Convection deals with moving fluids in which there are spatial variations in temperature or chemical concentration. In forced convection, these variations

More information

Module 6: Free Convections Lecture 26: Evaluation of Nusselt Number. The Lecture Contains: Heat transfer coefficient. Objectives_template

Module 6: Free Convections Lecture 26: Evaluation of Nusselt Number. The Lecture Contains: Heat transfer coefficient. Objectives_template The Lecture Contains: Heat transfer coefficient file:///d /Web%20Course%20(Ganesh%20Rana)/Dr.%20gautam%20biswas/Final/convective_heat_and_mass_transfer/lecture26/26_1.html[12/24/2014 6:08:23 PM] Heat transfer

More information

E. not enough information given to decide

E. not enough information given to decide Q22.1 A spherical Gaussian surface (#1) encloses and is centered on a point charge +q. A second spherical Gaussian surface (#2) of the same size also encloses the charge but is not centered on it. Compared

More information

The Madison Dynamo Experiment: magnetic instabilities driven by sheared flow in a sphere. Cary Forest Department of Physics University of Wisconsin

The Madison Dynamo Experiment: magnetic instabilities driven by sheared flow in a sphere. Cary Forest Department of Physics University of Wisconsin The Madison Dynamo Experiment: magnetic instabilities driven by sheared flow in a sphere Cary Forest Department of Physics University of Wisconsin February 28, 2001 Planets, stars and perhaps the galaxy

More information

THE EARTH S MAGNETIC FIELD AND ITS DYNAMO ORIGIN

THE EARTH S MAGNETIC FIELD AND ITS DYNAMO ORIGIN ARTICLE THE EARTH S MAGNETIC FIELD AND ITS DYNAMO ORIGIN BINOD SREENIVASAN* The Earth s magnetic field is powered by convection occurring in its fluid outer core. Variations in the intensity of core convection

More information

arxiv: v1 [physics.geo-ph] 10 Oct 2016

arxiv: v1 [physics.geo-ph] 10 Oct 2016 Approaching a realistic force balance in geodynamo simulations arxiv:1610.03107v1 [physics.geo-ph] 10 Oct 2016 Rakesh Yadav, 1, 2 Thomas Gastine, 2, 3 Ulrich Christensen, 2 Scott J. Wolk, 1 and Katja Poppenhaeger

More information

LES Simulations of Quiet Sun Magnetism

LES Simulations of Quiet Sun Magnetism LES Simulations of Quiet Sun Magnetism Matthias Rempel HAO/NCAR Quiet sun magnetism Origin and spatial distribution of quiet sun field Small scale dynamo? Remnant field from large scale dynamo? Vögler,

More information

(This is a sample cover image for this issue. The actual cover is not yet available at this time.)

(This is a sample cover image for this issue. The actual cover is not yet available at this time.) (This is a sample cover image for this issue. The actual cover is not yet available at this time.) This article appeared in a journal published by Elsevier. The attached copy is furnished to the author

More information

Table of Contents. Foreword... xiii. Preface... xv

Table of Contents. Foreword... xiii. Preface... xv Table of Contents Foreword.... xiii Preface... xv Chapter 1. Fundamental Equations, Dimensionless Numbers... 1 1.1. Fundamental equations... 1 1.1.1. Local equations... 1 1.1.2. Integral conservation equations...

More information

Maximum Entropy Production Principle: Where is the positive feedback?

Maximum Entropy Production Principle: Where is the positive feedback? Maximum Entropy Production Principle: Where is the positive feedback? Remi Tailleux Department of Meteorology, U. of Reading HHH - 30 November 2009 Outline The context: Horizontal convection Formulation

More information

arxiv: v1 [physics.flu-dyn] 17 Aug 2017

arxiv: v1 [physics.flu-dyn] 17 Aug 2017 Multiple zonal jets and convective heat transport barriers in a quasi-geostrophic model of planetary cores Céline Guervilly 1 & Philippe Cardin 2 1 School of Mathematics, Statistics and Physics, Newcastle

More information

Time-average and time-dependent parts of core flow

Time-average and time-dependent parts of core flow Physics of the Earth and Planetary Interiors 155 (2006) 120 139 Time-average and time-dependent parts of core flow Hagay Amit, Peter Olson Department of Earth and Planetary Sciences, Johns Hopkins University,

More information

AC & DC Magnetic Levitation and Semi-Levitation Modelling

AC & DC Magnetic Levitation and Semi-Levitation Modelling International Scientific Colloquium Modelling for Electromagnetic Processing Hannover, March 24-26, 2003 AC & DC Magnetic Levitation and Semi-Levitation Modelling V. Bojarevics, K. Pericleous Abstract

More information

Performance of the fusion code GYRO on three four generations of Crays. Mark Fahey University of Tennessee, Knoxville

Performance of the fusion code GYRO on three four generations of Crays. Mark Fahey University of Tennessee, Knoxville Performance of the fusion code GYRO on three four generations of Crays Mark Fahey mfahey@utk.edu University of Tennessee, Knoxville Contents Introduction GYRO Overview Benchmark Problem Test Platforms

More information

HADLEY CELL EXPANSION IN TODAY S CLIMATE AND PALEOCLIMATES

HADLEY CELL EXPANSION IN TODAY S CLIMATE AND PALEOCLIMATES HADLEY CELL EXPANSION IN TODAY S CLIMATE AND PALEOCLIMATES Bill Langford University Professor Emeritus Department of Mathematics and Statistics University of Guelph, Canada Presented to the BioM&S Symposium

More information

arxiv: v1 [astro-ph.ep] 28 Jan 2015

arxiv: v1 [astro-ph.ep] 28 Jan 2015 A Gaussian Model for Simulated Geomagnetic Field Reversals arxiv:1501.07118v1 [astro-ph.ep] 28 Jan 2015 Abstract Johannes Wicht 1 and Domenico Meduri 1,2 1 Max-Planck-Institut für Sonnensystemforschung,

More information

Fluid Dynamics: Theory, Computation, and Numerical Simulation Second Edition

Fluid Dynamics: Theory, Computation, and Numerical Simulation Second Edition Fluid Dynamics: Theory, Computation, and Numerical Simulation Second Edition C. Pozrikidis m Springer Contents Preface v 1 Introduction to Kinematics 1 1.1 Fluids and solids 1 1.2 Fluid parcels and flow

More information

Frequency spectrum of the geomagnetic field harmonic coefficients from dynamo simulations

Frequency spectrum of the geomagnetic field harmonic coefficients from dynamo simulations Frequency spectrum of the geomagnetic field harmonic coefficients from dynamo simulations Claire Bouligand, Nicolas Gillet, Dominique Jault, Nathanaël Schaeffer, Alexandre Fournier, Julien Aubert To cite

More information

Magnetic power spectrum in a dynamo model of Jupiter. Yue-Kin Tsang

Magnetic power spectrum in a dynamo model of Jupiter. Yue-Kin Tsang Magnetic power spectrum in a dynamo model of Jupiter Yue-Kin Tsang School of Mathematics, University of Leeds Chris Jones University of Leeds Structure of the Earth Let s start on Earth... CRUST various

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION doi:10.1038/nature12574 1 Parameter space exploration and rationale for parameter choices Here we give a detailed account of the parameter space exploration (Extended Data Table 1) carried out in support

More information

A solar surface dynamo

A solar surface dynamo MPS Solar Group Seminar May 8, 2007 A solar surface dynamo Alexander Vögler (Univ. of Utrecht) & Manfred Schüssler A lot of magnetic flux in the `quiet Sun Observation: Flux replenishment rates increase

More information

GEODYNAMO: NUMERICAL SIMULATIONS

GEODYNAMO: NUMERICAL SIMULATIONS Comp. by: womat Date:9/2/07 Time:20:05:52 Stage:First Proof File Path://spiina1001z/womat/production/ 302 GEODYNAMO: NUMERICAL SIMULATIONS The energy sources on the right-hand side of Eq. (5) are the same

More information

Models of magnetic field generation in partly stable planetary cores: Applications to Mercury and Saturn

Models of magnetic field generation in partly stable planetary cores: Applications to Mercury and Saturn Icarus 196 (2008) 16 34 www.elsevier.com/locate/icarus Models of magnetic field generation in partly stable planetary cores: Applications to Mercury and Saturn Ulrich R. Christensen, Johannes Wicht Max-Planck-Institut

More information

Physics of the Earth and Planetary Interiors

Physics of the Earth and Planetary Interiors Physics of the Earth and Planetary Interiors 246 (2015) 52 71 Contents lists available at ScienceDirect Physics of the Earth and Planetary Interiors journal homepage: www.elsevier.com/locate/pepi Invited

More information

Scaling laws for planetary dynamos driven by helical waves

Scaling laws for planetary dynamos driven by helical waves Scaling laws for planetary dynamos driven by helical waves P. A. Davidson A. Ranjan Cambridge What keeps planetary magnetic fields alive? (Earth, Mercury, Gas giants) Two ingredients of the early theories:

More information

Analysis of Turbulent Free Convection in a Rectangular Rayleigh-Bénard Cell

Analysis of Turbulent Free Convection in a Rectangular Rayleigh-Bénard Cell Proceedings of the 8 th International Symposium on Experimental and Computational Aerothermodynamics of Internal Flows Lyon, July 2007 Paper reference : ISAIF8-00130 Analysis of Turbulent Free Convection

More information

Powering Ganymede s dynamo

Powering Ganymede s dynamo JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 117,, doi:10.1029/2012je004052, 2012 Powering Ganymede s dynamo X. Zhan 1 and G. Schubert 1 Received 12 January 2012; revised 3 July 2012; accepted 6 July 2012; published

More information

Tutorial School on Fluid Dynamics: Aspects of Turbulence Session I: Refresher Material Instructor: James Wallace

Tutorial School on Fluid Dynamics: Aspects of Turbulence Session I: Refresher Material Instructor: James Wallace Tutorial School on Fluid Dynamics: Aspects of Turbulence Session I: Refresher Material Instructor: James Wallace Adapted from Publisher: John S. Wiley & Sons 2002 Center for Scientific Computation and

More information

Scaling laws for convection and jet speeds in the giant planets

Scaling laws for convection and jet speeds in the giant planets 1 Submitted to Icarus Scaling laws for convection and jet speeds in the giant planets Adam P. Showman University of Arizona, Tucson, AZ and Columbia University, New York, NY Yohai Kaspi California Institute

More information

The Shallow Water Equations

The Shallow Water Equations If you have not already done so, you are strongly encouraged to read the companion file on the non-divergent barotropic vorticity equation, before proceeding to this shallow water case. We do not repeat

More information

Pacific Secular Variation A result of hot lower mantle. David Gubbins School of Earth Sciences University of Leeds

Pacific Secular Variation A result of hot lower mantle. David Gubbins School of Earth Sciences University of Leeds Pacific Secular Variation A result of hot lower mantle David Gubbins School of Earth Sciences University of Leeds Thermal Core-Mantle Interaction (hot) (cold) Lateral variations in heat flux boundary condition

More information

The effects of rotation rate on deep convection in giant planets with small solid cores

The effects of rotation rate on deep convection in giant planets with small solid cores ARTICLE IN PRESS Planetary and Space Science 55 (2007) 407 412 www.elsevier.com/locate/pss The effects of rotation rate on deep convection in giant planets with small solid cores Martha Evonuk, Gary A.

More information

Foundations of Geomagnetism

Foundations of Geomagnetism Foundations of Geomagnetism GEORGE BACKUS University of California, San Diego ROBERT PARKER University of California, San Diego CATHERINE CONSTABLE University of California, San Diego m.m CAMBRIDGE UNIVERSITY

More information

The effect of different geometries on the thermal mantle convection

The effect of different geometries on the thermal mantle convection The effect of different geometries on the thermal mantle convection Mátyás Herein Eötvös Loránd University Faculty of Science Department of Geophysics and Space Sciences 2011 I. Introduction Outline II.

More information

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and education use, including for instruction at the authors institution

More information

NIMROD simulations of dynamo experiments in cylindrical and spherical geometries. Dalton Schnack, Ivan Khalzov, Fatima Ebrahimi, Cary Forest,

NIMROD simulations of dynamo experiments in cylindrical and spherical geometries. Dalton Schnack, Ivan Khalzov, Fatima Ebrahimi, Cary Forest, NIMROD simulations of dynamo experiments in cylindrical and spherical geometries Dalton Schnack, Ivan Khalzov, Fatima Ebrahimi, Cary Forest, 1 Introduction Two experiments, Madison Plasma Couette Experiment

More information

Before we consider two canonical turbulent flows we need a general description of turbulence.

Before we consider two canonical turbulent flows we need a general description of turbulence. Chapter 2 Canonical Turbulent Flows Before we consider two canonical turbulent flows we need a general description of turbulence. 2.1 A Brief Introduction to Turbulence One way of looking at turbulent

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION SUPPLEMENTARY INFORMATION Supplementary Figure 1 Nondimensional magnetic and kinetic energy densities averaged in the fluid core plotted as functions of time. Black and red lines show results of the UHFM

More information

On dynamo action produced by boundary thermal coupling

On dynamo action produced by boundary thermal coupling On dynamo action produced by boundary thermal coupling Binod Sreenivasan To cite this version: Binod Sreenivasan. On dynamo action produced by boundary thermal coupling. Physics of the Earth and Planetary

More information

OpenFOAM selected solver

OpenFOAM selected solver OpenFOAM selected solver Roberto Pieri - SCS Italy 16-18 June 2014 Introduction to Navier-Stokes equations and RANS Turbulence modelling Numeric discretization Navier-Stokes equations Convective term {}}{

More information

Numerical Methods in Aerodynamics. Turbulence Modeling. Lecture 5: Turbulence modeling

Numerical Methods in Aerodynamics. Turbulence Modeling. Lecture 5: Turbulence modeling Turbulence Modeling Niels N. Sørensen Professor MSO, Ph.D. Department of Civil Engineering, Alborg University & Wind Energy Department, Risø National Laboratory Technical University of Denmark 1 Outline

More information

10. Buoyancy-driven flow

10. Buoyancy-driven flow 10. Buoyancy-driven flow For such flows to occur, need: Gravity field Variation of density (note: not the same as variable density!) Simplest case: Viscous flow, incompressible fluid, density-variation

More information

CFD with OpenSource software

CFD with OpenSource software CFD with OpenSource software The Harmonic Balance Method in foam-extend Gregor Cvijetić Supervisor: Hrvoje Jasak Faculty of Mechanical Engineering and Naval Architecture University of Zagreb gregor.cvijetic@fsb.hr

More information

Dedalus: An Open-Source Spectral Magnetohydrodynamics Code

Dedalus: An Open-Source Spectral Magnetohydrodynamics Code Dedalus: An Open-Source Spectral Magnetohydrodynamics Code Keaton Burns University of California Berkeley Jeff Oishi SLAC National Accelerator Laboratory Received ; accepted ABSTRACT We developed the magnetohydrodynamic

More information

Differential Rotation and Emerging Flux in Solar Convective Dynamo Simulations

Differential Rotation and Emerging Flux in Solar Convective Dynamo Simulations Differential Rotation and Emerging Flux in Solar Convective Dynamo Simulations Yuhong Fan (HAO/NCAR), Fang Fang (LASP/CU) GTP workshop August 17, 2016 The High Altitude Observatory (HAO) at the National

More information

Konvektion und solares Magnetfeld

Konvektion und solares Magnetfeld Vorlesung Physik des Sonnensystems Univ. Göttingen, 2. Juni 2008 Konvektion und solares Magnetfeld Manfred Schüssler Max-Planck Planck-Institut für Sonnensystemforschung Katlenburg-Lindau Convection &

More information

Multiscale Computation of Isotropic Homogeneous Turbulent Flow

Multiscale Computation of Isotropic Homogeneous Turbulent Flow Multiscale Computation of Isotropic Homogeneous Turbulent Flow Tom Hou, Danping Yang, and Hongyu Ran Abstract. In this article we perform a systematic multi-scale analysis and computation for incompressible

More information

There are no simple turbulent flows

There are no simple turbulent flows Turbulence 1 There are no simple turbulent flows Turbulent boundary layer: Instantaneous velocity field (snapshot) Ref: Prof. M. Gad-el-Hak, University of Notre Dame Prediction of turbulent flows standard

More information

The effects of vigorous mixing in a convective model of zonal flow on the ice giants

The effects of vigorous mixing in a convective model of zonal flow on the ice giants Icarus 190 (2007) 110 126 www.elsevier.com/locate/icarus The effects of vigorous mixing in a convective model of zonal flow on the ice giants Jonathan Aurnou a,, Moritz Heimpel b, Johannes Wicht c a Earth

More information

Overview of the Numerics of the ECMWF. Atmospheric Forecast Model

Overview of the Numerics of the ECMWF. Atmospheric Forecast Model Overview of the Numerics of the Atmospheric Forecast Model M. Hortal Seminar 6 Sept 2004 Slide 1 Characteristics of the model Hydrostatic shallow-atmosphere approimation Pressure-based hybrid vertical

More information

Convective heat transfer and the pattern of thermal emission on the gas giants

Convective heat transfer and the pattern of thermal emission on the gas giants Geophys. J. Int. (2008) 173, 793 801 doi: 10.1111/j.1365-246X.2008.03764.x Convective heat transfer and the pattern of thermal emission on the gas giants Jonathan Aurnou, 1 Moritz Heimpel, 2 Lorraine Allen,

More information

AMSC 663/664 PROJECT: Rotation-driven Incompressible Magnetohydrodynamic Flow Utilizing Local Ensemble Transform Kalman Filtering

AMSC 663/664 PROJECT: Rotation-driven Incompressible Magnetohydrodynamic Flow Utilizing Local Ensemble Transform Kalman Filtering AMSC 663/664 PROJECT: Rotation-driven Incompressible Magnetohydrodynamic Flow Utilizing Local Ensemble Transform Kalman Filtering Sarah Burnett burnetts@math.umd.edu Applied Mathematics and Scientific

More information

Asymptotic theory for torsional convection in rotating fluid spheres

Asymptotic theory for torsional convection in rotating fluid spheres Under consideration for publication in J. Fluid Mech. 1 Asymptotic theory for torsional convection in rotating fluid spheres By KEKE Z H A N G 1, KAMENG L A M A N D DALI K O N G 3 1,3 College of Engineering,

More information

TOPICAL PROBLEMS OF FLUID MECHANICS 195 STABILTY OF A CONDUCTING FLUID CONTAINED BETWEEN TWO ROTATING SPHERES SUBJECTED TO A DIPOLAR MAGNETIC FIELD

TOPICAL PROBLEMS OF FLUID MECHANICS 195 STABILTY OF A CONDUCTING FLUID CONTAINED BETWEEN TWO ROTATING SPHERES SUBJECTED TO A DIPOLAR MAGNETIC FIELD TOPICAL PROBLEMS OF FLUID MECHANICS 95 DOI: https://doi.org/0.43/tpfm.207.025 STABILTY OF A CONDUCTING FLUID CONTAINED BETWEEN TWO ROTATING SPHERES SUBJECTED TO A DIPOLAR MAGNETIC FIELD A. Lalaoua,2, F.

More information

DYNAMO THEORY: THE PROBLEM OF THE GEODYNAMO PRESENTED BY: RAMANDEEP GILL

DYNAMO THEORY: THE PROBLEM OF THE GEODYNAMO PRESENTED BY: RAMANDEEP GILL DYNAMO THEORY: THE PROBLEM OF THE GEODYNAMO PRESENTED BY: RAMANDEEP GILL MAGNETIC FIELD OF THE EARTH DIPOLE Field Structure Permanent magnetization of Core? 80% of field is dipole 20 % is non dipole 2)

More information

Survey of experimental results

Survey of experimental results Survey of experimental results Philippe CARDIN, Observatoire de Grenoble, France Caramulo, September 5, 2003 Do we need experiments? Proofs of theory Checks of numerical simulations. Studies in different

More information

New variables in spherical geometry. David G. Dritschel. Mathematical Institute University of St Andrews.

New variables in spherical geometry. David G. Dritschel. Mathematical Institute University of St Andrews. New variables in spherical geometry David G Dritschel Mathematical Institute University of St Andrews http://www-vortexmcsst-andacuk Collaborators: Ali Mohebalhojeh (Tehran St Andrews) Jemma Shipton &

More information