Frank Jenko. Session on Plasma Physics: Petascale Computations of Turbulence in Laboratory and Astrophysical Plasmas

Size: px
Start display at page:

Download "Frank Jenko. Session on Plasma Physics: Petascale Computations of Turbulence in Laboratory and Astrophysical Plasmas"

Transcription

1 Frank Jenko Session on Plasma Physics: Petascale Computations of Turbulence in Laboratory and Astrophysical Plasmas Max-Planck-Institut für Plasmaphysik, Germany 3 rd EU-US HPC Summer School Dublin, June 2012

2 The plasma universe

3 More than 99% of the visible universe is in a plasma state

4 Aurora borealis

5 High-k Alfvén wave turbulence: Observations versus simulations AW turbulence in the solar wind Bale et al., PRL 2005 GK simulation of AW turbulence Howes et al., PRL 2008

6 Plasmas in fusion research: ITER Idea: New source of CO 2 free energy for centuries to come Magnetic confinement in a large tokamak Goal: 500 MW of fusion power The 7 ITER parties

7 The resources for fusion energy are practically unlimited Deuterium in a bath tub full of water and Lithium in a used laptop battery suffice for a family over 50 years

8

9 What is turbulence? Turbulence is a nonlinear phenomenon Leonardo da Vinci (1529) occurs (only) in open systems involves many degrees of freedom is highly irregular (chaotic) in space and time often leads to a (statistically) quasi-stationary state far from thermodynamic equilibrium There might be some hope to 'break the deadlock' by extensive, but well-planned, computational efforts... John von Neumann

10 Interdisciplinary aspects This research involves aspects of: plasma physics turbulence physics space and astrophysics applied mathematics and computer science This research is done in a collaborative way: GENE development team (gene.rzg.mpg.de) ERC project on plasma turbulence & exascale computing ( Additional projects with experts from applied mathematics and computer science as well as from neighboring areas of physics

11 Minimizing the effort

12 Plasma turbulence: Kinetic theory! Dilute and/or hot plasmas are almost collisionless. Thus, if kinetic effects (finite Larmor radius, Landau damping, magnetic trapping etc.) play a role, magnetohydrodynamics is not applicable, and one has to use a kinetic description! Vlasov-Maxwell equations Removing the fast gyromotion leads to a dramatic speed-up Charged rings as quasiparticles; gyrocenter coordinates; keep kinetic effects Brizard & Hahm, Rev. Mod. Phys. 79, 421 (2007)

13 The nonlinear gyrokinetic equations Advection/Conservation equation X = gyrocenter position װV = parallel velocity µ = magnetic moment Appropriate field equations Nonlinear 5D equations; removal of irrelevant space-time scales

14 Turbulent fluctuations are quasi-2d Reason: Strong background magnetic field Use field-aligned coordinates and minimize the simulation volume

15 Reduction of simulation volume: full torus annulus flux tube Non-negligible contributions from sub-ion scales: ETG modes and microtearing modes

16 Major theoretical speedups G.Hammett relative to original Vlasov/pre-Maxwell system on a naïve grid, for ITER 1/ρ * = a/ρ ~ 1000 n Nonlinear gyrokinetic equations eliminate plasma frequency: ω pe /Ω i ~ m i /m e x10 3 eliminate Debye length scale: (ρ i /λ De ) 3 ~ (m i /m e ) 3/2 x10 5 average over fast ion gyration: Ω i /ω ~ 1/ρ * x10 3 n Field-aligned coordinates adapt to elongated structure of turbulent eddies: Δ /Δ ~ 1/ρ * x10 3 n Reduced simulation volume reduce toroidal mode numbers (i.e., 1/15 of toroidal direction) x15 L r ~ a/6 ~ 160 ρ ~ 10 correlation lengths x6 n Total speedup x10 16 n For comparison: Massively parallel computers ( ) x10 7

17 Extreme computing in support of ITER: The GENE code

18 The simulation code GENE GENE is physically comprehensive and computationally efficient with applications in fusion research and astrophysics Two main goals: deeper understanding of fundamental physics issues and direct comparisons with experiments/observations The differential operators are discretized via a combination of spectral, finite difference, finite element, and finite volume methods; the emphasis is on high scalability GENE is developed cooperatively by an international team, and it is publicly available (gene.rzg.mpg.de) GENE-based proposals have been selected as one of the first PRACE projects and again recently in the 4 th Call

19 The linear GK eigenvalue problem Standard approach: Initial value computation direct EV solver Christoph Kowitz, Master s Thesis

20 Iterative EV solvers via SLEPc Available methods: An extension of PETSc J.E. Roman et al., Valencia Recent result: Christoph Kowitz, Master s Thesis

21 GENE parallelization Parallelization/optimization strategy: - high-dimensional domain decomposition - either pure MPI or mixed MPI/OpenMP paradigm - optimal subroutines and processor layout determined during initialization phase (à la FFTW) - time step is chosen in an optimal way

22 GENE on BlueGene/P (strong scaling) JUGENE at Jülich

23 Some computational challenges GENE runs are compute intensive; large individual runs may require up to several million core-hours Large runs use more than grid points and require up to about 1 TB of short-term storage Long-term storage on local tapes (data transfer via simple scp or rsync commands) Many different HPC platforms are used in parallel Currently, GENE is being ported to GPGPU & Intel MIC systems

24 Building an international user base Developing a cutting-edge code like GENE requires many man-years and a lot of endurance Much work went into making the code user-friendly Release versions of the code are distributed via a website The code comes with extensive documentation (50-page manual and 50-page tutorial) A lot of time and energy also went into direct user support This is a service to the community, with costs and benefits

25 Input: GENE Launcher

26 Output: GENE Diagnostics Tool

27 Visualization of GENE results

28 A few words on code development

29 The need for version control (I) Keep track of changes(!) even in single developer cases, e.g., for more efficient bug hunting Avoid destructive interference between developers/developer groups: taken from: [Version Control with Subversion,

30 The need for version control (II) OpenSource solution provided by subversion.apache.org: taken from: [Version Control with Subversion, existing source code can easily be integrated into a subversion repository modifications can be monitored via web interfaces

31 In-Source-Documentation Even for single developers: Try to add meaningful comments in the source code! There s always the possibility that your code shall be used/extended by other people OpenSource software tools like help to create a HTML/PDF documentation:

32 Test Suite Even the most careful developer introduces bugs and often at places which you would never guess Hence, define a certain set of tests which is representative for your typical simulations checks the parallelization in different ways can be run in a reasonable amount of time and which should be checked before every major commit and after each port to a new machine/compiler (compiler bugs)!! The GENE-Test-Suite is a perl-based script: calling the code subsequently with either a default set of input files or some special purpose set (like high-resolved simulations) comparing the output up to a certain accuracy (the machine accuracy depends on the architecture!) monitoring the wall clock time to check the efficiency of the installation (the parallelization is checked in GENE itself)

33 Cache optimization Running your code efficiently on different architectures probably requires some clever memory alignment as the cache sizes/ communication buffers vary from machine to machine. In GENE, we use the strip mining or loop sectioning technique do n=ln1,ln2 do m=lm1,lm2 do l=ll1,ll2 do k=lk1,lk2! some Vlasov eq. terms rhs = rhs + a * f(:,:,k,l,m,n)! some other Vlasov eq. terms rhs = rhs + b * f(:,:,k,l,m,n) enddo enddo enddo enddo do iblock=0,nblocks-1! some Vlasov eq. terms do klmn = iblock*lklmn0,(iblock+1)*lkmn0 rhs = rhs + a * f(:,:,klmn) enddo! some other Vlasov eq. terms do klmn = iblock*lklmn0,(iblock+1)*lkmn0 rhs = rhs + b * f(:,:,klmn) enddo enddo with block size (lklmn0) < cache size such the subarrays fit ( measured during initialization) The same applies to communication buffers

34 MPI mapping The optimum MPI mapping (distribution of processes in the different dimensions) is non-trivial in general! It depends on the hardware (latency, buffer sizes) the grid sizes and numerical schemes (think of ghost cell to real cell ratio for finite differences schemes) GENE is designed as a restartable program (i.e., it has proper initialization/finalization calls) and can hence check automatically for the best mapping. Since not only the run time but also the results are being compared, it directly detects possible parallelization errors.

35 Final remarks To tackle various open problems in the area of plasma turbulence, we are required and prepared to use the next generation(s) of HPC platforms. The ultimate goal? A virtual fusion plasma! n n Fusion research: A place where fascinating physics, extreme computing, and global challenges meet More information: gene.rzg.mpg.de

Gyrokinetics an efficient framework for studying turbulence and reconnection in magnetized plasmas

Gyrokinetics an efficient framework for studying turbulence and reconnection in magnetized plasmas Frank Jenko Gyrokinetics an efficient framework for studying turbulence and reconnection in magnetized plasmas Max-Planck-Institut für Plasmaphysik, Garching Workshop on Vlasov-Maxwell Kinetics WPI, Vienna,

More information

The gyrokinetic turbulence code GENE - Numerics and applications

The gyrokinetic turbulence code GENE - Numerics and applications Contributors: T. Dannert (1), F. Jenko (1),F. Merz (1), D. Told (1), X. Lapillonne (2), S. Brunner (2), and others T. Görler (1) The gyrokinetic turbulence code GENE - Numerics and applications (1) Max-Planck-Institut

More information

International Workshop on the Frontiers of Modern Plasma Physics July On the Nature of Plasma Core Turbulence.

International Workshop on the Frontiers of Modern Plasma Physics July On the Nature of Plasma Core Turbulence. 1953-43 International Workshop on the Frontiers of Modern Plasma Physics 14-25 July 2008 On the Nature of Plasma Core Turbulence. F. Jenko Max-Planck Institute fuer Plasmaphysik Garching bei Munchen Germany

More information

Gyrokinetic simulations of magnetic fusion plasmas

Gyrokinetic simulations of magnetic fusion plasmas Gyrokinetic simulations of magnetic fusion plasmas Tutorial 2 Virginie Grandgirard CEA/DSM/IRFM, Association Euratom-CEA, Cadarache, 13108 St Paul-lez-Durance, France. email: virginie.grandgirard@cea.fr

More information

Co-existence and interference of multiple modes in plasma turbulence: Some recent GENE results

Co-existence and interference of multiple modes in plasma turbulence: Some recent GENE results Co-existence and interference of multiple modes in plasma turbulence: Some recent GENE results Frank Jenko IPP Garching, Germany University of Ulm, Germany Acknowledgements: F. Merz, T. Görler, D. Told,

More information

Multiscale, multiphysics modeling of turbulent transport and heating in collisionless, magnetized plasmas

Multiscale, multiphysics modeling of turbulent transport and heating in collisionless, magnetized plasmas Multiscale, multiphysics modeling of turbulent transport and heating in collisionless, magnetized plasmas Michael Barnes Plasma Science & Fusion Center Massachusetts Institute of Technology Collaborators:

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

Computational Issues in the Continuum Gyrokinetic Code GYRO

Computational Issues in the Continuum Gyrokinetic Code GYRO Computational Issues in the Continuum Gyrokinetic Code GYRO presented by: Eric Bass GSEP SciDAC project at General Atomics CScADS Workshop Snowbird, UT July 19, 2010 About GYRO Purpose: To predict transport

More information

Gyrokinetic Turbulence in Tokamaks and Stellarators

Gyrokinetic Turbulence in Tokamaks and Stellarators Gyrokinetic Turbulence in Tokamaks and Stellarators Frank Jenko IPP, Germany Acknowledgements: P. Xanthopoulos, F. Merz, T. Görler, M. Pueschel, D. Told; A. Boozer, G. Hammett, D. Mikkelsen, M. Zarnstorff,

More information

Towards Multiscale Gyrokinetic Simulations of ITER-like Plasmas

Towards Multiscale Gyrokinetic Simulations of ITER-like Plasmas Frank Jenko Max-Planck-Institut für Plasmaphysik, Garching Universität Ulm Towards Multiscale Gyrokinetic Simulations of ITER-like Plasmas 23 rd IAEA Fusion Energy Conference 11-16 October 2010, Daejeon,

More information

Research on Structure Formation of Plasmas Dominated by Multiple Hierarchical Dynamics

Research on Structure Formation of Plasmas Dominated by Multiple Hierarchical Dynamics Chapter 4 Epoch Making Simulation Research on Structure Formation of Plasmas Dominated by Multiple Hierarchical Dynamics Group Representative Yasuaki Kishimoto Naka Fusion Research Establishment, Japan

More information

TURBULENT TRANSPORT THEORY

TURBULENT TRANSPORT THEORY ASDEX Upgrade Max-Planck-Institut für Plasmaphysik TURBULENT TRANSPORT THEORY C. Angioni GYRO, J. Candy and R.E. Waltz, GA The problem of Transport Transport is the physics subject which studies the physical

More information

Entropy evolution and dissipation in collisionless particle-in-cell gyrokinetic simulations

Entropy evolution and dissipation in collisionless particle-in-cell gyrokinetic simulations Max-Planck-Insititut für Plasmaphysik Entropy evolution and dissipation in collisionless particle-in-cell gyrokinetic simulations A. Bottino Objectives Develop a numerical tool able to reproduce and predict

More information

GTC Simulation of Turbulence and Transport in Tokamak Plasmas

GTC Simulation of Turbulence and Transport in Tokamak Plasmas GTC Simulation of Turbulence and Transport in Tokamak Plasmas Z. Lin University it of California, i Irvine, CA 92697, USA and GPS-TTBP Team Supported by SciDAC GPS-TTBP, GSEP & CPES Motivation First-principles

More information

What place for mathematicians in plasma physics

What place for mathematicians in plasma physics What place for mathematicians in plasma physics Eric Sonnendrücker IRMA Université Louis Pasteur, Strasbourg projet CALVI INRIA Nancy Grand Est 15-19 September 2008 Eric Sonnendrücker (U. Strasbourg) Math

More information

Global Nonlinear Simulations of Ion and Electron Turbulence Usintg a Particle-In-Cell Approach

Global Nonlinear Simulations of Ion and Electron Turbulence Usintg a Particle-In-Cell Approach Global Nonlinear Simulations of Ion and Electron Turbulence Usintg a Particle-In-Cell Approach S. Jolliet 1), B. F. McMillan 1), T. M. Tran 1), X. Lapillonne 1), L. Villard 1), A. Bottino 2), P. Angelino

More information

HPC Simulations of Magnetic Fusion Plasmas

HPC Simulations of Magnetic Fusion Plasmas HPC Simulations of Magnetic Fusion Plasmas L. Villard S. Brunner, A. Casati, W.A. Cooper, J.P. Graves, M. Jucker, S. Khoshagdam, X. Lapillonne, B.F. McMillan, P. Popovich, O. Sauter, T.M. Tran, T. Vernay

More information

Three-dimensional nature of magnetic reconnection X-line in asymmetric current sheets

Three-dimensional nature of magnetic reconnection X-line in asymmetric current sheets Blue Waters symposium 2017 Three-dimensional nature of magnetic reconnection X-line in asymmetric current sheets Yi-Hsin Liu @ NASA- Goddard Space Flight Center William Daughton @ Los Alamos National Lab

More information

Introduction to Plasma Physics

Introduction to Plasma Physics Introduction to Plasma Physics Hartmut Zohm Max-Planck-Institut für Plasmaphysik 85748 Garching DPG Advanced Physics School The Physics of ITER Bad Honnef, 22.09.2014 A simplistic view on a Fusion Power

More information

Global particle-in-cell simulations of Alfvénic modes

Global particle-in-cell simulations of Alfvénic modes Global particle-in-cell simulations of Alfvénic modes A. Mishchenko, R. Hatzky and A. Könies Max-Planck-Institut für Plasmaphysik, EURATOM-Association, D-749 Greifswald, Germany Rechenzentrum der Max-Planck-Gesellschaft

More information

AMSC 663 Project Proposal: Upgrade to the GSP Gyrokinetic Code

AMSC 663 Project Proposal: Upgrade to the GSP Gyrokinetic Code AMSC 663 Project Proposal: Upgrade to the GSP Gyrokinetic Code George Wilkie (gwilkie@umd.edu) Supervisor: William Dorland (bdorland@umd.edu) October 11, 2011 Abstract Simulations of turbulent plasma in

More information

PLASMA: WHAT IT IS, HOW TO MAKE IT AND HOW TO HOLD IT. Felix I. Parra Rudolf Peierls Centre for Theoretical Physics, University of Oxford

PLASMA: WHAT IT IS, HOW TO MAKE IT AND HOW TO HOLD IT. Felix I. Parra Rudolf Peierls Centre for Theoretical Physics, University of Oxford 1 PLASMA: WHAT IT IS, HOW TO MAKE IT AND HOW TO HOLD IT Felix I. Parra Rudolf Peierls Centre for Theoretical Physics, University of Oxford 2 Overview Why do we need plasmas? For fusion, among other things

More information

INTRODUCTION TO GYROKINETIC AND FLUID SIMULATIONS OF PLASMA TURBULENCE AND OPPORTUNITES FOR ADVANCED FUSION SIMULATIONS

INTRODUCTION TO GYROKINETIC AND FLUID SIMULATIONS OF PLASMA TURBULENCE AND OPPORTUNITES FOR ADVANCED FUSION SIMULATIONS INTRODUCTION TO GYROKINETIC AND FLUID SIMULATIONS OF PLASMA TURBULENCE AND OPPORTUNITES FOR ADVANCED FUSION SIMULATIONS G.W. Hammett, Princeton Plasma Physics Lab w3.pppl.gov/ hammett Fusion Simulation

More information

TRANSPORT PROGRAM C-MOD 5 YEAR REVIEW MAY, 2003 PRESENTED BY MARTIN GREENWALD MIT PLASMA SCIENCE & FUSION CENTER

TRANSPORT PROGRAM C-MOD 5 YEAR REVIEW MAY, 2003 PRESENTED BY MARTIN GREENWALD MIT PLASMA SCIENCE & FUSION CENTER TRANSPORT PROGRAM C-Mod C-MOD 5 YEAR REVIEW MAY, 2003 PRESENTED BY MARTIN GREENWALD MIT PLASMA SCIENCE & FUSION CENTER C-MOD - OPPORTUNITIES AND CHALLENGES Prediction and control are the ultimate goals

More information

Full-wave Simulations of Lower Hybrid Wave Propagation in the EAST Tokamak

Full-wave Simulations of Lower Hybrid Wave Propagation in the EAST Tokamak Full-wave Simulations of Lower Hybrid Wave Propagation in the EAST Tokamak P. T. BONOLI, J. P. LEE, S. SHIRAIWA, J. C. WRIGHT, MIT-PSFC, B. DING, C. YANG, CAS-IPP, Hefei 57 th Annual Meeting of the APS

More information

NIMROD Project Overview

NIMROD Project Overview NIMROD Project Overview Christopher Carey - Univ. Wisconsin NIMROD Team www.nimrodteam.org CScADS Workshop July 23, 2007 Project Overview NIMROD models the macroscopic dynamics of magnetized plasmas by

More information

Block-Structured Grids for Eulerian Gyrokinetic Simulations

Block-Structured Grids for Eulerian Gyrokinetic Simulations Block-Structured Grids for Eulerian Gyrokinetic Simulations D. Jarema a,, H.J. Bungartz a, T. Görler b, F. Jenko c,b, T. Neckel a, D. Told c,b a Institut für Informatik, Technische Universität München,

More information

Gyrokinetic simulations including the centrifugal force in a strongly rotating tokamak plasma

Gyrokinetic simulations including the centrifugal force in a strongly rotating tokamak plasma Gyrokinetic simulations including the centrifugal force in a strongly rotating tokamak plasma F.J. Casson, A.G. Peeters, Y. Camenen, W.A. Hornsby, A.P. Snodin, D. Strintzi, G.Szepesi CCFE Turbsim, July

More information

Finite-Orbit-Width Effect and the Radial Electric Field in Neoclassical Transport Phenomena

Finite-Orbit-Width Effect and the Radial Electric Field in Neoclassical Transport Phenomena 1 TH/P2-18 Finite-Orbit-Width Effect and the Radial Electric Field in Neoclassical Transport Phenomena S. Satake 1), M. Okamoto 1), N. Nakajima 1), H. Sugama 1), M. Yokoyama 1), and C. D. Beidler 2) 1)

More information

Massively parallel semi-lagrangian solution of the 6d Vlasov-Poisson problem

Massively parallel semi-lagrangian solution of the 6d Vlasov-Poisson problem Massively parallel semi-lagrangian solution of the 6d Vlasov-Poisson problem Katharina Kormann 1 Klaus Reuter 2 Markus Rampp 2 Eric Sonnendrücker 1 1 Max Planck Institut für Plasmaphysik 2 Max Planck Computing

More information

Plasma instabilities. Dr Ben Dudson, University of York 1 / 37

Plasma instabilities. Dr Ben Dudson, University of York 1 / 37 Plasma instabilities Dr Ben Dudson, University of York 1 / 37 Previously... Plasma configurations and equilibrium Linear machines, and Stellarators Ideal MHD and the Grad-Shafranov equation Collisional

More information

0 Magnetically Confined Plasma

0 Magnetically Confined Plasma 0 Magnetically Confined Plasma 0.1 Particle Motion in Prescribed Fields The equation of motion for species s (= e, i) is written as d v ( s m s dt = q s E + vs B). The motion in a constant magnetic field

More information

Forced hybrid-kinetic turbulence in 2D3V

Forced hybrid-kinetic turbulence in 2D3V Forced hybrid-kinetic turbulence in 2D3V Silvio Sergio Cerri1,2 1 In collaboration with: 3 F. Califano, F. Rincon, F. Jenko4, D. Told4 1 Physics Department E. Fermi, University of Pisa, Italy fu r Plasmaphysik,

More information

Single Particle Motion in a Magnetized Plasma

Single Particle Motion in a Magnetized Plasma Single Particle Motion in a Magnetized Plasma Aurora observed from the Space Shuttle Bounce Motion At Earth, pitch angles are defined by the velocity direction of particles at the magnetic equator, therefore:

More information

Summer College on Plasma Physics August Introduction to Nonlinear Gyrokinetic Theory

Summer College on Plasma Physics August Introduction to Nonlinear Gyrokinetic Theory 2052-24 Summer College on Plasma Physics 10-28 August 2009 Introduction to Nonlinear Gyrokinetic Theory T.S. Hahm Princeton Plasma Physics Laboratory Princeton University USA Introduction to Nonlinear

More information

Gyrokinetic simulations with GYSELA: Main current issues in physics & numerics

Gyrokinetic simulations with GYSELA: Main current issues in physics & numerics Gyrokinetic simulations with GYSELA: Main current issues in physics & numerics Y. Sarazin, Y. Asahi 2, N. Bouzat, G. Dif-Pradalier, P. Donnel, C. Ehrlacher, C. Emeriau 3, X. Garbet, Ph. Ghendrih, V. Grandgirard,

More information

Gyrokinetic Large Eddy Simulations

Gyrokinetic Large Eddy Simulations Gyrokinetic Large Eddy Simulations A. Bañón Navarro 1, P. Morel 1, M. Albrecht-Marc 1, D. Carati 1, F. Merz 2, T. Görler 2, and F. Jenko 2 1 Laboratoire de Physique Statistique et des Plasmas Université

More information

Turbulence in Tokamak Plasmas

Turbulence in Tokamak Plasmas ASDEX Upgrade Turbulence in Tokamak Plasmas basic properties and typical results B. Scott Max Planck Institut für Plasmaphysik Euratom Association D-85748 Garching, Germany Uni Innsbruck, Nov 2011 Basics

More information

Electron Bernstein Wave Heating in the TCV Tokamak

Electron Bernstein Wave Heating in the TCV Tokamak Electron Bernstein Wave Heating in the TCV Tokamak A. Mueck 1, Y. Camenen 1, S. Coda 1, L. Curchod 1, T.P. Goodman 1, H.P. Laqua 2, A. Pochelon 1, TCV Team 1 1 Ecole Polytechnique Fédérale de Lausanne

More information

Turbulence and Transport The Secrets of Magnetic Confinement

Turbulence and Transport The Secrets of Magnetic Confinement Turbulence and Transport The Secrets of Magnetic Confinement Presented by Martin Greenwald MIT Plasma Science & Fusion Center IAP January 2005 FUSION REACTIONS POWER THE STARS AND PRODUCE THE ELEMENTS

More information

Particle-in-cell simulations of electron transport from plasma turbulence: recent progress in gyrokinetic particle simulations of turbulent plasmas

Particle-in-cell simulations of electron transport from plasma turbulence: recent progress in gyrokinetic particle simulations of turbulent plasmas Institute of Physics Publishing Journal of Physics: Conference Series 16 (25 16 24 doi:1.188/1742-6596/16/1/2 SciDAC 25 Particle-in-cell simulations of electron transport from plasma turbulence: recent

More information

L Aquila, Maggio 2002

L Aquila, Maggio 2002 Nonlinear saturation of Shear Alfvén Modes and energetic ion transports in Tokamak equilibria with hollow-q profiles G. Vlad, S. Briguglio, F. Zonca, G. Fogaccia Associazione Euratom-ENEA sulla Fusione,

More information

Progress and Plans on Physics and Validation

Progress and Plans on Physics and Validation Progress and Plans on Physics and Validation T.S. Hahm Princeton Plasma Physics Laboratory Princeton, New Jersey Momentum Transport Studies: Turbulence and Neoclassical Physics Role of Trapped Electrons

More information

Recent Progress of Parallel SAMCEF with MUMPS MUMPS User Group Meeting 2013

Recent Progress of Parallel SAMCEF with MUMPS MUMPS User Group Meeting 2013 Recent Progress of Parallel SAMCEF with User Group Meeting 213 Jean-Pierre Delsemme Product Development Manager Summary SAMCEF, a brief history Co-simulation, a good candidate for parallel processing MAAXIMUS,

More information

Models for Global Plasma Dynamics

Models for Global Plasma Dynamics Models for Global Plasma Dynamics F.L. Waelbroeck Institute for Fusion Studies, The University of Texas at Austin International ITER Summer School June 2010 Outline 1 Models for Long-Wavelength Plasma

More information

Z. Lin University of California, Irvine, CA 92697, USA. Supported by SciDAC GPS-TTBP, GSEP & CPES

Z. Lin University of California, Irvine, CA 92697, USA. Supported by SciDAC GPS-TTBP, GSEP & CPES GTC Framework Development and Application Z. Lin University of California, Irvine, CA 92697, USA and dgpsttbp GPS-TTBP Team Supported by SciDAC GPS-TTBP, GSEP & CPES GPS-TTBP Workshop on GTC Framework

More information

1.0. T (ev) 0.5. z [m] y [m] x [m]

1.0. T (ev) 0.5. z [m] y [m] x [m] W7-X edge modelling with the 3D SOL fluid code BoRiS M. Borchardt, J. Riemann, R. Schneider, X. Bonnin Max-Planck-Institut für Plasmaphysik, Teilinstitut Greifswald EURATOM Association, D 17491 Greifswald,

More information

Experimental Investigations of Magnetic Reconnection. J Egedal. MIT, PSFC, Cambridge, MA

Experimental Investigations of Magnetic Reconnection. J Egedal. MIT, PSFC, Cambridge, MA Experimental Investigations of Magnetic Reconnection J Egedal MIT, PSFC, Cambridge, MA Coronal Mass Ejections Movie from NASA s Solar Dynamics Observatory (SDO) Space Weather The Solar Wind affects the

More information

Space Plasma Physics Thomas Wiegelmann, 2012

Space Plasma Physics Thomas Wiegelmann, 2012 Space Plasma Physics Thomas Wiegelmann, 2012 1. Basic Plasma Physics concepts 2. Overview about solar system plasmas Plasma Models 3. Single particle motion, Test particle model 4. Statistic description

More information

DIAGNOSTICS FOR ADVANCED TOKAMAK RESEARCH

DIAGNOSTICS FOR ADVANCED TOKAMAK RESEARCH DIAGNOSTICS FOR ADVANCED TOKAMAK RESEARCH by K.H. Burrell Presented at High Temperature Plasma Diagnostics 2 Conference Tucson, Arizona June 19 22, 2 134 /KHB/wj ROLE OF DIAGNOSTICS IN ADVANCED TOKAMAK

More information

Bounce-averaged gyrokinetic simulations of trapped electron turbulence in elongated tokamak plasmas

Bounce-averaged gyrokinetic simulations of trapped electron turbulence in elongated tokamak plasmas Bounce-averaged gyrokinetic simulations of trapped electron turbulence in elongated tokamak plasmas Lei Qi a, Jaemin Kwon a, T. S. Hahm a,b and Sumin Yi a a National Fusion Research Institute (NFRI), Daejeon,

More information

Gyrokinetic Transport Driven by Energetic Particle Modes

Gyrokinetic Transport Driven by Energetic Particle Modes Gyrokinetic Transport Driven by Energetic Particle Modes by Eric Bass (General Atomics) Collaborators: Ron Waltz, Ming Chu GSEP Workshop General Atomics August 10, 2009 Outline I. Background Alfvén (TAE/EPM)

More information

The FTU facilities. Regarding the the control and data acquisition system, last year we carried out the following activities:

The FTU facilities. Regarding the the control and data acquisition system, last year we carried out the following activities: The FTU facilities FTU Machine Summary of the machine operation During 2005, the machine operated at the high level of 91% of successful pulses. The experimental activity started in March and went on till

More information

Long Time Simulations of Microturbulence in Fusion Plasmas

Long Time Simulations of Microturbulence in Fusion Plasmas Long Time Simulations of Microturbulence in Fusion Plasmas W. W. Lee, S. Ethier, T. G. Jenkins, W. X. Wang, J. L. V. Lewandowski, G. Rewoldt, and W. M. Tang Princeton Plasma Physics Laboratory, Princeton,

More information

Macroscopic plasma description

Macroscopic plasma description Macroscopic plasma description Macroscopic plasma theories are fluid theories at different levels single fluid (magnetohydrodynamics MHD) two-fluid (multifluid, separate equations for electron and ion

More information

Electron Transport and Improved Confinement on Tore Supra

Electron Transport and Improved Confinement on Tore Supra Electron Transport and Improved Confinement on Tore Supra G. T. Hoang, C. Bourdelle, X. Garbet, T. Aniel, G. Giruzzi, M. Ottaviani. Association EURATOM-CEA. CEA-Cadarache, 38, St Paul-lez-Durance, France

More information

Rotation and Neoclassical Ripple Transport in ITER

Rotation and Neoclassical Ripple Transport in ITER Rotation and Neoclassical Ripple Transport in ITER Elizabeth J. Paul 1 Matt Landreman 1 Francesca Poli 2 Don Spong 3 Håkan Smith 4 William Dorland 1 1 University of Maryland 2 Princeton Plasma Physics

More information

On existence of resistive magnetohydrodynamic equilibria

On existence of resistive magnetohydrodynamic equilibria arxiv:physics/0503077v1 [physics.plasm-ph] 9 Mar 2005 On existence of resistive magnetohydrodynamic equilibria H. Tasso, G. N. Throumoulopoulos Max-Planck-Institut für Plasmaphysik Euratom Association

More information

Waves in plasma. Denis Gialis

Waves in plasma. Denis Gialis Waves in plasma Denis Gialis This is a short introduction on waves in a non-relativistic plasma. We will consider a plasma of electrons and protons which is fully ionized, nonrelativistic and homogeneous.

More information

Performance Study of the 3D Particle-in- Cell Code GTC on the Cray X1

Performance Study of the 3D Particle-in- Cell Code GTC on the Cray X1 Performance Study of the 3D Particle-in- Cell Code GTC on the Cray X1 Stéphane Ethier Princeton Plasma Physics Laboratory CUG 2004 Knoxville, TN May 20, 2004 Work Supported by DOE Contract No.DE-AC02-76CH03073

More information

Small scale solar wind turbulence: Recent observations and theoretical modeling

Small scale solar wind turbulence: Recent observations and theoretical modeling Small scale solar wind turbulence: Recent observations and theoretical modeling F. Sahraoui 1,2 & M. Goldstein 1 1 NASA/GSFC, Greenbelt, USA 2 LPP, CNRS-Ecole Polytechnique, Vélizy, France Outline Motivations

More information

NumKin, Strasbourg, October 17 th, 2016

NumKin, Strasbourg, October 17 th, 2016 F. Palermo 1 A.Biancalani 1, C.Angioni 1, F.Zonca 2, A.Bottino 1, B.Scott 1, G.D.Conway 1, E.Poli 1 1 Max Planck Institut für Plasmaphysik, Garching, Germany 2 ENEA C. R. Frascati - Via E. Fermi 45, CP

More information

Full-wave Electromagnetic Field Simulations in the Lower Hybrid Range of Frequencies

Full-wave Electromagnetic Field Simulations in the Lower Hybrid Range of Frequencies Full-wave Electromagnetic Field Simulations in the Lower Hybrid Range of Frequencies P.T. Bonoli, J.C. Wright, M. Porkolab, PSFC, MIT M. Brambilla, IPP, Garching, Germany E. D Azevedo, ORNL, Oak Ridge,

More information

Introduction to Fusion Physics

Introduction to Fusion Physics Introduction to Fusion Physics Hartmut Zohm Max-Planck-Institut für Plasmaphysik 85748 Garching DPG Advanced Physics School The Physics of ITER Bad Honnef, 22.09.2014 Energy from nuclear fusion Reduction

More information

Gyrokinetic Simulations of Tokamak Microturbulence

Gyrokinetic Simulations of Tokamak Microturbulence Gyrokinetic Simulations of Tokamak Microturbulence W Dorland, Imperial College, London With key contributions from: S C Cowley F Jenko G W Hammett D Mikkelsen B N Rogers C Bourdelle W M Nevins D W Ross

More information

Tomo-Hiko Watanabe and Shinya Maeyama Department of Physics, Nagoya University, Japan

Tomo-Hiko Watanabe and Shinya Maeyama Department of Physics, Nagoya University, Japan Tomo-Hiko Watanabe and Shinya Maeyama Department of Physics, Nagoya University, Japan watanabe.tomohiko@nagoya-u.jp www.p.phys.nagoya-u.ac.jp 2017/1/30 DMC2017@IPAM, UCLA 1 Outline Introduction What is

More information

Block-Structured Grids in Full Velocity Space for Eulerian Gyrokinetic Simulations

Block-Structured Grids in Full Velocity Space for Eulerian Gyrokinetic Simulations Block-Structured Grids in Full Velocity Space for Eulerian Gyrokinetic Simulations D. Jarema a,, H.J. Bungartz a, T. Görler b, F. Jenko c,b, T. Neckel a, D. Told c,b a Institut für Informatik, Technische

More information

PHYSICS OF HOT DENSE PLASMAS

PHYSICS OF HOT DENSE PLASMAS Chapter 6 PHYSICS OF HOT DENSE PLASMAS 10 26 10 24 Solar Center Electron density (e/cm 3 ) 10 22 10 20 10 18 10 16 10 14 10 12 High pressure arcs Chromosphere Discharge plasmas Solar interior Nd (nω) laserproduced

More information

Sensors Plasma Diagnostics

Sensors Plasma Diagnostics Sensors Plasma Diagnostics Ken Gentle Physics Department Kenneth Gentle RLM 12.330 k.gentle@mail.utexas.edu NRL Formulary MIT Formulary www.psfc.mit.edu/library1/catalog/ reports/2010/11rr/11rr013/11rr013_full.pdf

More information

Kinetic damping in gyro-kinetic simulation and the role in multi-scale turbulence

Kinetic damping in gyro-kinetic simulation and the role in multi-scale turbulence 2013 US-Japan JIFT workshop on New Aspects of Plasmas Kinetic Simulation NIFS, November 22-23, 2013 Kinetic damping in gyro-kinetic simulation and the role in multi-scale turbulence cf. Revisit for Landau

More information

Greg Hammett Imperial College, London & Princeton Plasma Physics Lab With major contributions from:

Greg Hammett Imperial College, London & Princeton Plasma Physics Lab With major contributions from: Greg Hammett Imperial College, London & Princeton Plasma Physics Lab With major contributions from: Steve Cowley (Imperial College) Bill Dorland (Imperial College) Eliot Quataert (Berkeley) LMS Durham

More information

High-Performance Scientific Computing

High-Performance Scientific Computing High-Performance Scientific Computing Instructor: Randy LeVeque TA: Grady Lemoine Applied Mathematics 483/583, Spring 2011 http://www.amath.washington.edu/~rjl/am583 World s fastest computers http://top500.org

More information

Gyrokinetic Theory and Dynamics of the Tokamak Edge

Gyrokinetic Theory and Dynamics of the Tokamak Edge ASDEX Upgrade Gyrokinetic Theory and Dynamics of the Tokamak Edge B. Scott Max Planck Institut für Plasmaphysik D-85748 Garching, Germany PET-15, Sep 2015 these slides: basic processes in the dynamics

More information

Lower Hybrid Current Drive Experiments on Alcator C-Mod: Comparison with Theory and Simulation

Lower Hybrid Current Drive Experiments on Alcator C-Mod: Comparison with Theory and Simulation Lower Hybrid Current Drive Experiments on Alcator C-Mod: Comparison with Theory and Simulation P.T. Bonoli, A. E. Hubbard, J. Ko, R. Parker, A.E. Schmidt, G. Wallace, J. C. Wright, and the Alcator C-Mod

More information

Fine-Scale Zonal Flow Suppression of Electron Temperature Gradient Turbulence

Fine-Scale Zonal Flow Suppression of Electron Temperature Gradient Turbulence Fine-Scale Zonal Flow Suppression of Electron Temperature Gradient Turbulence S.E. Parker, J.J. Kohut, Y. Chen, Z. Lin, F.L. Hinton and W.W. Lee Center for Integrated Plasma Studies, University of Colorado,

More information

Properties of freely decaying and driven turbulence of fusion plasmas using gyrokinetic particle simulation

Properties of freely decaying and driven turbulence of fusion plasmas using gyrokinetic particle simulation J. Plasma Fusion Res. SERIES, Vol. 9 () Properties of freely decaying and driven turbulence of fusion plasmas using gyrokinetic particle simulation R. Ganesh Institute for Plasma Research, Bhat Village,

More information

Microturbulence in optimised stellarators

Microturbulence in optimised stellarators Q Josefine H. E. Proll, Benjamin J. Faber, Per Helander, Samuel A. Lazerson, Harry Mynick, and Pavlos Xanthopoulos Many thanks to: T. M. Bird, J. W. Connor, T. Go rler, W. Guttenfelder, G.W. Hammett, F.

More information

ITER Predictions Using the GYRO Verified and Experimentally Validated TGLF Transport Model

ITER Predictions Using the GYRO Verified and Experimentally Validated TGLF Transport Model 1 THC/3-3 ITER Predictions Using the GYRO Verified and Experimentally Validated TGLF Transport Model J.E. Kinsey, G.M. Staebler, J. Candy, and R.E. Waltz General Atomics, P.O. Box 8608, San Diego, California

More information

Simulation of alpha particle current drive and heating in spherical tokamaks

Simulation of alpha particle current drive and heating in spherical tokamaks Simulation of alpha particle current drive and heating in spherical tokamaks R. Farengo 1, M. Zarco 1, H. E. Ferrari 1, 1 Centro Atómico Bariloche and Instituto Balseiro, Argentina. Consejo Nacional de

More information

A fast solver for the gyrokinetic field equation with adiabatic electrons

A fast solver for the gyrokinetic field equation with adiabatic electrons A fast solver for the gyrokinetic field equation with adiabatic electrons M.Borchardt, R.Kleiber Max-Planck-Institut für Plasmaphysik, EURATOM Association 17491 Greifswald, Germany W.Hackbusch Max-Planck-Institut

More information

Nonlinear Gyrokinetic Simulations of Ion Turbulence in Impurity Seeded and High Density Toroidal Plasmas

Nonlinear Gyrokinetic Simulations of Ion Turbulence in Impurity Seeded and High Density Toroidal Plasmas Nonlinear Gyrokinetic Simulations of Ion Turbulence in Impurity Seeded and High Density Toroidal Plasmas R.D. Sydora, J.-N. Leboeuf, J. M. Dawson, V.K. Decyk, M.W. Kissick, C. L. Rettig, T. L. Rhodes,

More information

Gyrokinetic Turbulence Investigations Involving Ion and Electron Scales

Gyrokinetic Turbulence Investigations Involving Ion and Electron Scales Gyrokinetic Turbulence Investigations Involving Ion and Electron Scales T. Görler, F. Jenko, M.J. Pueschel, D. Told, and H. Lesch Abstract Plasma microinstabilities are one of the key physics problems

More information

MHD-particle simulations and collective alpha-particle transport: analysis of ITER scenarios and perspectives for integrated modelling

MHD-particle simulations and collective alpha-particle transport: analysis of ITER scenarios and perspectives for integrated modelling MHD-particle simulations and collective alpha-particle transport: analysis of ITER scenarios and perspectives for integrated modelling G. Vlad, S. Briguglio, G. Fogaccia, F. Zonca Associazione Euratom-ENEA

More information

PLASMA ASTROPHYSICS. ElisaBete M. de Gouveia Dal Pino IAG-USP. NOTES: (references therein)

PLASMA ASTROPHYSICS. ElisaBete M. de Gouveia Dal Pino IAG-USP. NOTES:  (references therein) PLASMA ASTROPHYSICS ElisaBete M. de Gouveia Dal Pino IAG-USP NOTES:http://www.astro.iag.usp.br/~dalpino (references therein) ICTP-SAIFR, October 7-18, 2013 Contents What is plasma? Why plasmas in astrophysics?

More information

Electromagneic Waves in a non- Maxwellian Dusty Plasma

Electromagneic Waves in a non- Maxwellian Dusty Plasma Electromagneic Waves in a non- Maxwellian Dusty Plasma Nazish Rubab PhD student, KF University Graz IWF-OEAW Graz 26 January, 2011 Layout Dusty Plasma Non-Maxwellian Plasma Kinetic Alfven Waves Instability

More information

Parallel Numerics. Scope: Revise standard numerical methods considering parallel computations!

Parallel Numerics. Scope: Revise standard numerical methods considering parallel computations! Parallel Numerics Scope: Revise standard numerical methods considering parallel computations! Required knowledge: Numerics Parallel Programming Graphs Literature: Dongarra, Du, Sorensen, van der Vorst:

More information

Computational Methods in Plasma Physics

Computational Methods in Plasma Physics Computational Methods in Plasma Physics Richard Fitzpatrick Institute for Fusion Studies University of Texas at Austin Purpose of Talk Describe use of numerical methods to solve simple problem in plasma

More information

arxiv: v1 [physics.plasm-ph] 3 Apr 2011

arxiv: v1 [physics.plasm-ph] 3 Apr 2011 A comparison of Vlasov with drift kinetic and gyrokinetic theories arxiv:1104.0427v1 [physics.plasm-ph] 3 Apr 2011 H. Tasso 1, G. N. Throumoulopoulos 2 1 Max-Planck-Institut für Plasmaphysik, Euratom Association,

More information

MHD. Jeff Freidberg MIT

MHD. Jeff Freidberg MIT MHD Jeff Freidberg MIT 1 What is MHD MHD stands for magnetohydrodynamics MHD is a simple, self-consistent fluid description of a fusion plasma Its main application involves the macroscopic equilibrium

More information

The Path to Fusion Energy creating a star on earth. S. Prager Princeton Plasma Physics Laboratory

The Path to Fusion Energy creating a star on earth. S. Prager Princeton Plasma Physics Laboratory The Path to Fusion Energy creating a star on earth S. Prager Princeton Plasma Physics Laboratory The need for fusion energy is strong and enduring Carbon production (Gton) And the need is time urgent Goal

More information

David R. Smith UW-Madison

David R. Smith UW-Madison Supported by College W&M Colorado Sch Mines Columbia U Comp-X General Atomics INEL Johns Hopkins U LANL LLNL Lodestar MIT Nova Photonics New York U Old Dominion U ORNL PPPL PSI Princeton U Purdue U SNL

More information

Effects of Alpha Particle Transport Driven by Alfvénic Instabilities on Proposed Burning Plasma Scenarios on ITER

Effects of Alpha Particle Transport Driven by Alfvénic Instabilities on Proposed Burning Plasma Scenarios on ITER Effects of Alpha Particle Transport Driven by Alfvénic Instabilities on Proposed Burning Plasma Scenarios on ITER G. Vlad, S. Briguglio, G. Fogaccia, F. Zonca Associazione Euratom-ENEA sulla Fusione, C.R.

More information

MHD Modes of Solar Plasma Structures

MHD Modes of Solar Plasma Structures PX420 Solar MHD 2013-2014 MHD Modes of Solar Plasma Structures Centre for Fusion, Space & Astrophysics Wave and oscillatory processes in the solar corona: Possible relevance to coronal heating and solar

More information

Development of LH wave fullwave simulation based on FEM

Development of LH wave fullwave simulation based on FEM Development of LH wave fullwave simulation based on FEM S. Shiraiwa and O. Meneghini on behalf of LHCD group of Alacator C-Mod PSFC, MIT 2010/03/10 San-Diego, CA Special acknowledgements : R. Parker, P.

More information

Dark Energy and Massive Neutrino Universe Covariances

Dark Energy and Massive Neutrino Universe Covariances Dark Energy and Massive Neutrino Universe Covariances (DEMNUniCov) Carmelita Carbone Physics Dept, Milan University & INAF-Brera Collaborators: M. Calabrese, M. Zennaro, G. Fabbian, J. Bel November 30

More information

A Domain Decomposition Based Jacobi-Davidson Algorithm for Quantum Dot Simulation

A Domain Decomposition Based Jacobi-Davidson Algorithm for Quantum Dot Simulation A Domain Decomposition Based Jacobi-Davidson Algorithm for Quantum Dot Simulation Tao Zhao 1, Feng-Nan Hwang 2 and Xiao-Chuan Cai 3 Abstract In this paper, we develop an overlapping domain decomposition

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise is the new name for ArcGIS for Server What is ArcGIS Enterprise ArcGIS Enterprise is powerful

More information

Multiphase Flow Simulations in Inclined Tubes with Lattice Boltzmann Method on GPU

Multiphase Flow Simulations in Inclined Tubes with Lattice Boltzmann Method on GPU Multiphase Flow Simulations in Inclined Tubes with Lattice Boltzmann Method on GPU Khramtsov D.P., Nekrasov D.A., Pokusaev B.G. Department of Thermodynamics, Thermal Engineering and Energy Saving Technologies,

More information

Kinetic Turbulence in Magnetised Plasma

Kinetic Turbulence in Magnetised Plasma 5 March 2013 Kinetic Turbulence in Magnetised Plasma Alexander Schekochihin w i t h S. Cowley (Culham), G. Howes, J. TenBarge (Iowa), W. Dorland, A. Kanekar (Maryland), T. Tatsuno (Tokyo), G. Hammett (Princeton),

More information

INTRODUCTION TO MAGNETIC NUCLEAR FUSION

INTRODUCTION TO MAGNETIC NUCLEAR FUSION INTRODUCTION TO MAGNETIC NUCLEAR FUSION S.E. Sharapov Euratom/CCFE Fusion Association, Culham Science Centre, Abingdon, Oxfordshire OX14 3DB, UK With acknowledgments to B.Alper for use of his transparencies

More information