PIConGPU Bringing Large-Scale Laser Plasma Simulations to GPU Supercomputing

Size: px
Start display at page:

Download "PIConGPU Bringing Large-Scale Laser Plasma Simulations to GPU Supercomputing"

Transcription

1 PIConGPU Bringing Large-Scale Laser Plasma Simulations to GPU Supercomputing Michael Bussmann 1, Heiko Burau 1, René Widera 1, Florian Berninger 1, Axel Hübl 1, Thomas Kluge 1, Alexander Debus 1, Ulrich Schramm 1, Thomas E. Cowan 1, Felix Schmitt 2, Wolfgang Hönig 2, Guido Juckeland 2, Wolfgang Nagel 2 1 Helmholtz-Zentrum Dresden-Rossendorf 2 Zentrum für Informationsdienste und Hochleistungsrechnen Text optional: Institutsname Prof. Dr. Hans Mustermann Mitglied der Leibniz-Gemeinschaft

2 At HZDR we use high-power lasers to create beams of ions, electrons and x-rays. With the lasers we ionize matter and create a hot plasma. The electromagnetic fields in the plasma are strong enough to accelerate particles to relativistic energies. Parallel Simulations are needed to understand and optimize these acceleration processes. But we have to make them fast... Seite 2

3 Advanced Laser-driven Particle Sources Seite 3

4 W in s DRACO High-Power Laser 25 x seconds pulse duration 2 x Watts peak power 10 x worldwide power consumption Seite 4

5 Laser-driven Radiation HZDR Laser-driven electron beams Laser-driven proton beams Thomson scattering X-ray beams Seite 5

6 Application example: Hadron therapy of cancerous tissue X-rays Ions Effective Dose (%) Seite 6

7 Next generation tools to fight cancer? Why worry? Each one of us is carrying an unlicensed nuclear accelerator on his back. Dr. Peter Venkman, Ghost Busters Seite 7

8 The Particle-in-Cell Algorithm for Relativistic Plasmas Seite 8

9 The Particle-in-Cell (PiC) algorithm F Compute the Lorentz Force q E v B Integrate the Equation of Motion dp dt F Compute new Fields E t B t 1 J B 2 c ε0 E Compute Currents J uf(t,r,v)dv Seite 9

10 The Particle-in-Cell (PiC) algorithm in action Seite 10

11 The problem with particles that don t stay in cells Seite 11

12 Memory access conflicts caused by non-locality of particle data Threads Memory Access Physical Grid = Memory Layout Thread 1 Thread 2 Thread 3 Thread 4 Thread 5 Seite 12

13 PiConGPU Seite 13

14 Everything depends on data structures PART 1 cell-based data Super Cell Each thread in a thread block corresponds to one cell in the super cell ID 1 ID 2 ID 3 ID 4 ID 5 ID 6 ID 7 ID B,E,J ID 9 ID 10 ID 11 ID 12 ID 13 ID 14 ID 15 ID Seite 14

15 The super cell allows for cell-wise threading in one thread block 1 2 ID 1 local memory access ID 2 Magnetic Fields Electric Fields Currents Magnetic Fields Electric Fields Currents Parallel Execution 16 ID 16 Magnetic Fields Electric Fields Currents Seite 15

16 Everything depends on data structures PART 2 particle data Attribute Frame (the data structure formerly known as tile, pool,...) x 1 y 1 x 2 y 2 x 3 y 3 x 4 y 4 x 16 y 16 Each thread in a thread block is started for one particle in the frame z 1 z 2 z 3 z 4 z 16 ID 1 ID 2 ID 3 ID 4 ID 5 ID 6 ID 7 ID 8 m 1 m 2 m 3 m 4 m 16 ID 9 ID 10 ID 11 ID 12 Q 1 Q 2 Q 3 Q 4 Q 16 ID 13 ID 14 ID 15 ID Cell index tells you the particle s local cell index inside the super cell Seite 16

17 The super cell allows for cell-wise threading in one thread block x 1 1 ID 1 y 1 z 1 m 1 local memory access x 2 Q 1 2 ID 2 y 2 z 2 m 2 Q 2 Parallel Execution 3 ID 16 x 16 y 16 z 16 m 16 Q 16 Seite 17

18 Fill frames according to the particle position in the super cell Super Cell Attribute Frame x 1 y 1 x 2 y 2 x 3 y 3 x 4 y 4 x 15 y z 1 z 2 z 3 z 4 z m 1 Q 1 m 2 Q 2 m 3 Q 3 m 4 Q 4 m 15 Q If there are more particles than cells, just add frames! Seite 18

19 Associating tiles and super cells Super Cell Start of Frame List Attribute Frame x 1 x 2 x 3 x 4 x 16 x 17 x 18 x 19 y 1 y 2 y 3 y 4 y y 17 y 18 y 19 z 1 z 2 z 3 z 4 z 16 z 17 z 18 z m 1 m 17 m 2 m 18 m 3 m 19 m 4 m 16 Q 1 Q 17 Q 2 Q 18 Q 3 Q Q 4 Q 16 End of Frame List link frames Seite 19

20 Storage of cell data in global memory optimum alignment Super Cell B,E,J Global Memory optimum size Seite 20

21 Storage of particle data in global memory optimum alignment Attribute Frame Global Memory x 1 x 2 x 3 x 4 x 16 x 1 y 1 z 1 m 1 Q C 1 x 2 y 2 z 2 m 2 Q C 2 y 1 y 2 y 3 y 4 y 16 x 3 y 3 z 3 m 3 Q C 3 x 4 y 4 z 4 m 4 Q C 4 z 1 z 2 z 3 z 4 z 16 x 5 y 5 z 5 m 5 Q C 5 x 6 y 6 z 6 m 6 Q C 6 m 1 m 2 m 3 m 4 m 16 x 7 y 7 z 7 m 7 Q C 7 Q 1 Q 2 Q 3 Q 4 Q 16 x 8 y 8 z 8 m 8 Q C 8 x 9 y 9 z 9 m 9 Q C 9 x 10 y 10 z 10 m 10 Q C 10 x 11 y 11 z 11 m 11 Q C x 12 y 12 z 12 m 12 Q C 12 optimum size Seite 21

22 The particle push storing cell-data in shared memory Global Memory Thread Cell in Super Cell 1 B,E,J read ID 1 write 2 B,E,J read ID 2 write 3 B,E,J read ID 3 write Cell-wise threading Seite 22

23 The particle push pushing particles using stored cell data Attribute Frame Thread Cell in Super Cell x 1 y 1 z 1 1 push ID 1 read 1 B,E,J x 2 y 2 z 2 2 push ID 2 read 2 B,E,J x 3 y 3 z 3 2 push ID 3 read 2 B,E,J Particle-wise threading Seite 23

24 Current deposition atomicadd(float) is not so expensive (Fermi) Super Cell ID 5 2 J 3 J ID 9 6 J 7 J 6 J 7 J J 11 J 10 Seite 24

25 Beyond one GPU Seite 25

26 Encapsulation of all memory transfer functions GPU1 GPU2 cudamemcpy, MPI_ISEND asynchronous any data (particle, cell) + Local Domain Model a thread can assume that all the data it needs is in its local memory (SISD) Seite 26

27 How to add automatic memory transfer to your code (electric field) //######################################################## // Allocate Memory //######################################################## //Create layout GridLayout<DIM2> layout(dataspace<dim2>(1024,1024),dataspace<dim2>(16,16)); //Create memory GridBuffer<float2,DIM2> *field=new GridBuffer<float2,DIM2>(layout,FIELD_E,false); //define edges field->addexchange (Mask(TOP)+Mask(LEFT),DataSpace<DIM2>(1,1),false); Seite 27

28 Events help to direct kernel execution, data exchange, etc. EventTask tree 1 Depends on Parallel to Seite 28

29 Defining the algorithmic structure of a task graph 1 getsizefromdevice(); // memcpy from device EventTask e_split = gettransactionevent(); starttransaction( e_split ); // depend from e_split cudakernel_x(); // create a kernel task EventTask e1 = endtransaction(); starttransaction( e_split ); cudakernel_y(); synchronizewithneighbor(); // memcpy+mpi task EventTask e2 = endtransaction(); settransactionevent( e1+e2 ); // combine parallel work cudakernel_z(); Seite 29

30 How to add events to your code (electric field) //######################################################## // One iteration //######################################################## // Receive data needed for Computing FieldE EventTask eventfielde = this->fielde->getgridbuffer()->startreceive(); // Compute FieldE (1st kernel) this->fielde->updatee(*(this->fieldb)); // FieldE is ready and borders can be sent to neighbors EventTask eventfielde+=this->fielde->getgridbuffer()- >startsend(); //Join two events //Receive FieldB from neighbors EventTask eventfieldb=this->fieldb->getgridbuffer()- >startreceive(); Seite 30

31 What s the deal? Seite 31

32 Physics capabilities 3D3V relativistic particle-in-cell code Villasenor-Buneman charge conserving current deposition NGP / CIC / TSC macro-particle distribution functions Boris Push particle pusher Yee-scheme / Directional splitting Maxwell-Solver Seite 32

33 Strong and Weak Scaling on NVIDIA TESLA M2090 Seite 33

34 Laser-driven wakefield acceleration of electrons 64 NVIDIA Fermi GPUs 45 min 128 AMD cores 8 days 480x480x3070 Cells 2.8 x 10 9 macro particles PIConGPU ILLUMINATION Seite 34

35 picongpu.hzdr.de ccoe-dresden.de Seite 35

Simulating radiation from Laser-wakefield accelerators

Simulating radiation from Laser-wakefield accelerators TUSBC1 11 th International Computational Accelerator Physics Conference ICAP 2012 in Rostock Simulating radiation from Laser-wakefield accelerators Alexander Debus, Richard Pausch, René Widera, Michael

More information

WG2 Computations for Accelerator Physics Summary Presentation

WG2 Computations for Accelerator Physics Summary Presentation WG2 Computations for Accelerator Physics Summary Presentation David Bruhwiler and Zenghai Li Advanced Accelerator Concepts University of Texas at Austin June 15, 2012 32 participants: Weiming An, Alexey

More information

Beam Shape Effects in Non Linear Compton Scattering

Beam Shape Effects in Non Linear Compton Scattering Beam Shape Effects in Non Linear Compton Scattering Signatures of High Intensity QED Daniel Seipt with T. Heinzl and B. Kämpfer Introduction QED vs. classical calculations, Multi Photon radiation Temporal

More information

Scientific Case for Ultra-intense Laser-Matter Interaction Physics in Solid-density Plasma

Scientific Case for Ultra-intense Laser-Matter Interaction Physics in Solid-density Plasma Scientific Case for Ultra-intense Laser-Matter Interaction Physics in Solid-density Plasma Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft Helmholtz

More information

Neutronic analysis of SFR lattices: Serpent vs. HELIOS-2

Neutronic analysis of SFR lattices: Serpent vs. HELIOS-2 Neutronic analysis of SFR lattices: Serpent vs. HELIOS-2 E. Fridman 1, R. Rachamin 1, C. Wemple 2 1 Helmholtz Zentrum Dresden Rossendorf 2 Studsvik Scandpower Inc. Text optional: Institutsname Prof. Dr.

More information

Robust energy enhancement of ultra-short pulse laser accelerated protons from reduced mass targets

Robust energy enhancement of ultra-short pulse laser accelerated protons from reduced mass targets Robust energy enhancement of ultra-short pulse laser accelerated protons from reduced mass targets K. Zeil, J. Metzkes, T. Kluge, M. Bussmann, T. E. Cowan, S. D. Kraft, R. Sauerbrey, B. Schmidt, M. Zier,

More information

Radiative Signatures of the Relativistic Kelvin-Helmholtz Instability

Radiative Signatures of the Relativistic Kelvin-Helmholtz Instability M. Bussmann +49 351 260-2616 m.bussmann@hzdr.de A. Huebl +49 351 260-3639 a.huebl@hzdr.de R. Pausch +49 351 260-2616 r.pausch@hzdr.de R. Widera +49 351 260-3543 r.widera@hzdr.de Radiative Signatures of

More information

Laser-driven proton acceleration from cryogenic hydrogen jets

Laser-driven proton acceleration from cryogenic hydrogen jets Laser-driven proton acceleration from cryogenic hydrogen jets new prospects in tumor therapy and laboratory astroparticle physics C. Roedel SLAC National Accelerator Laboratory & Friedrich-Schiller-University

More information

Jacob Trier Frederiksen, Niels Bohr Institute, Copenhagen, DK

Jacob Trier Frederiksen, Niels Bohr Institute, Copenhagen, DK Jacob Trier Frederiksen, Niels Bohr Institute, Copenhagen, DK Computational Astrophysics group Niels Bohr Institute Computational power History Present state at the Niels Bohr Institute Prospects Plasma

More information

Text optional: Institutsname Prof. Dr. Hans Mustermann Mitglied der Leibniz-Gemeinschaft

Text optional: Institutsname Prof. Dr. Hans Mustermann   Mitglied der Leibniz-Gemeinschaft Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft Seite 2 Helmholtz Beamline at European XFEL Laser Options: ~1 Hz PW, 150J/150 fs ~1 Hz PW, 30 J/30 fs

More information

Tight-Focusing of Short Intense Laser Beams in Particle-in-Cell Simulations of Laser-Plasma Interaction

Tight-Focusing of Short Intense Laser Beams in Particle-in-Cell Simulations of Laser-Plasma Interaction 28/03/2017, CTU in Prague Tight-Focusing of Short Intense Laser Beams in Particle-in-Cell Simulations of Laser-Plasma Interaction Bc. Petr Valenta (petr.valenta@eli-beams.eu) Supervisors: doc. Ing. Ondrej

More information

Particle-in-Cell Codes for plasma-based particle acceleration

Particle-in-Cell Codes for plasma-based particle acceleration A. Pukhov Institute for Theoretical Physics I University of Dusseldorf, Germany Particle-in-Cell Codes for plasma-based particle acceleration Outline Relativistic plasmas, acceleration and the simulation

More information

Multiscale Modelling, taking into account Collisions

Multiscale Modelling, taking into account Collisions Multiscale Modelling, taking into account Collisions Andreas Adelmann (Paul Scherrer Institut) October 28, 2017 Multiscale Modelling, taking into account Collisions October 28, 2017 Page 1 / 22 1 Motivation

More information

Tight-Focusing of Short Intense Laser Pulses in Particle-in-Cell Simulations of Laser-Plasma Interaction

Tight-Focusing of Short Intense Laser Pulses in Particle-in-Cell Simulations of Laser-Plasma Interaction 16/05/2017, CTU in Prague Tight-Focusing of Short Intense Laser Pulses in Particle-in-Cell Simulations of Laser-Plasma Interaction Bc. Petr Valenta (petr.valenta@eli-beams.eu) Supervisors: doc. Ing. Ondrej

More information

Photon-scattering experiments at γelbe and at HIγS Data analysis Results Comparison of experimental results with model predictions

Photon-scattering experiments at γelbe and at HIγS Data analysis Results Comparison of experimental results with model predictions Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft Pygmy dipole strength in 86 Kr and systematics of N = 5 isotones R. Schwengner 1, R. Massarczyk 1,2,

More information

Introduction to Particle Accelerators & CESR-C

Introduction to Particle Accelerators & CESR-C Introduction to Particle Accelerators & CESR-C Michael Billing June 7, 2006 What Are the Uses for Particle Accelerators? Medical Accelerators Create isotopes tracers for Medical Diagnostics & Biological

More information

Understanding the pulsar magnetosphere through first-principle simulations

Understanding the pulsar magnetosphere through first-principle simulations Understanding the pulsar magnetosphere through first-principle simulations Alexander Y. Chen In collaboration with: Andrei Beloborodov Rui Hu The Many Faces of Neutron Stars August 25, 2015 Pulsars: Rotating

More information

Photons in the universe. Indian Institute of Technology Ropar

Photons in the universe. Indian Institute of Technology Ropar Photons in the universe Photons in the universe Element production on the sun Spectral lines of hydrogen absorption spectrum absorption hydrogen gas Hydrogen emission spectrum Element production on the

More information

Outline. 1 Why PIC Simulations Make Sense. 2 The Algorithm. 3 Examples Surface High Harmonics Generation. 4 Extensions Of The PIC Algorithm

Outline. 1 Why PIC Simulations Make Sense. 2 The Algorithm. 3 Examples Surface High Harmonics Generation. 4 Extensions Of The PIC Algorithm PIC Simulations an Introduction GRK 1203 Meeting February 12-15, 2008, Oelde Outline 1 Simulations Make Sense 2 3 Surface High Harmonics Generation 4 Of PIC Plasma Physics Is Complex Experiment real thing

More information

High performance 2D simulations for the problem of optical breakdown

High performance 2D simulations for the problem of optical breakdown High performance D simulations for the problem of optical breakdown HIGH PERFORMANCE D SIMULATIONS FOR THE PROBLEM OF OPTICAL BREAKDOWN 1 1 Institute of Applied Physics of the Russian Academy of Sciences

More information

Beam Diagnostics and Instrumentation JUAS, Archamps Peter Forck Gesellschaft für Schwerionenforschnung (GSI)

Beam Diagnostics and Instrumentation JUAS, Archamps Peter Forck Gesellschaft für Schwerionenforschnung (GSI) Beam Diagnostics and Instrumentation JUAS, Archamps Peter Forck Gesellschaft für Schwerionenforschnung (GSI), 2003, A dedicated proton accelerator for 1p-physics at the future GSI Demands facilities for

More information

Scattering of Electromagnetic Radiation. References:

Scattering of Electromagnetic Radiation. References: Scattering of Electromagnetic Radiation References: Plasma Diagnostics: Chapter by Kunze Methods of experimental physics, 9a, chapter by Alan Desilva and George Goldenbaum, Edited by Loveberg and Griem.

More information

Examples for experiments that can be done at the T9 beam line

Examples for experiments that can be done at the T9 beam line Examples for experiments that can be done at the T9 beam line Example 1: Use muon tomography to look for hidden chambers in pyramids (2016 winning proposal, Pyramid hunters) You may know computer tomography

More information

Design and numerical simulation of thermionic electron gun

Design and numerical simulation of thermionic electron gun Design and numerical simulation of thermionic electron gun M.Hoseinzade 1;1), A.Sadighzadeh 1) Plasma Physics and Nuclear Fusion Research School, Nuclear Science and Technology Research Institute, AEOI,

More information

Summer College on Plasma Physics. 30 July - 24 August, The forming of a relativistic partially electromagnetic planar plasma shock

Summer College on Plasma Physics. 30 July - 24 August, The forming of a relativistic partially electromagnetic planar plasma shock 1856-31 2007 Summer College on Plasma Physics 30 July - 24 August, 2007 The forming of a M. E. Dieckmann Institut fuer Theoretische Physik IV, Ruhr-Universitaet, Bochum, Germany The forming of a The forming

More information

Lecture 4: The particle equations (1)

Lecture 4: The particle equations (1) Lecture 4: The particle equations (1) Presenter: Mark Eric Dieckmann Department of Science and Technology (ITN), Linköping University, Sweden July 17, 2014 Overview We have previously discussed the leapfrog

More information

The Larmor Formula (Chapters 18-19)

The Larmor Formula (Chapters 18-19) 2017-02-28 Dispersive Media, Lecture 12 - Thomas Johnson 1 The Larmor Formula (Chapters 18-19) T. Johnson Outline Brief repetition of emission formula The emission from a single free particle - the Larmor

More information

Nuclear Fusion with Polarized Fuel

Nuclear Fusion with Polarized Fuel Mitglied der Helmholtz-Gemeinschaft Nuclear Fusion with Polarized Fuel -Some thoughts on the PREFER collaboration - Workshop on Nuclear Fusion with Polarized Fuel Ferrara 2/3 October 2017 Markus Büscher

More information

sri 2D Implicit Charge- and Energy- Conserving Particle-in-cell Application Using CUDA Christopher Leibs Karthik Murthy

sri 2D Implicit Charge- and Energy- Conserving Particle-in-cell Application Using CUDA Christopher Leibs Karthik Murthy 2D Implicit Charge- and Energy- Conserving sri Particle-in-cell Application Using CUDA Christopher Leibs Karthik Murthy Mentors Dana Knoll and Allen McPherson IS&T CoDesign Summer School 2012, Los Alamos

More information

THE GSI FUTURE PROJECT: AN INTERNATIONAL ACCELERATOR FACILITY FOR BEAMS OF IONS AND ANTIPROTONS

THE GSI FUTURE PROJECT: AN INTERNATIONAL ACCELERATOR FACILITY FOR BEAMS OF IONS AND ANTIPROTONS THE GSI FUTURE PROJECT: AN INTERNATIONAL ACCELERATOR FACILITY FOR BEAMS OF IONS AND ANTIPROTONS Ina Pschorn Gesellschaft für Schwerionenforschung mbh, D-64291 Darmstadt, Germany 1. INTRODUCTION The GSI

More information

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS TSOKOS OPTION I-2 MEDICAL IMAGING Reading Activity Answers IB Assessment Statements Option I-2, Medical Imaging: X-Rays I.2.1. I.2.2. I.2.3. Define

More information

Computational Relativistic Electrodynamics: New Algorithms, Parallel Software, and Applications to Accelerator Design

Computational Relativistic Electrodynamics: New Algorithms, Parallel Software, and Applications to Accelerator Design Computational Relativistic Electrodynamics: New Algorithms, Parallel Software, and Applications to Accelerator Design A Dissertation Presented by Kwang Min Yu to The Graduate School in Partial Fulfillment

More information

High Energy electron and proton acceleration by circularly polarized laser pulse from near critical density hydrogen gas target

High Energy electron and proton acceleration by circularly polarized laser pulse from near critical density hydrogen gas target High Energy electron and proton acceleration by circularly polarized laser pulse from near critical density hydrogen gas target ASHUTOSH SHARMA* ELI-ALPS, Szeged, Hungary. ABSTRACT We demonstrate in this

More information

An Astrophysical Plasma Wakefield Accelerator. Alfven Wave Induced Plasma Wakefield Acceleration

An Astrophysical Plasma Wakefield Accelerator. Alfven Wave Induced Plasma Wakefield Acceleration An Astrophysical Plasma Wakefield Accelerator Alfven Wave Induced Plasma Wakefield Acceleration Laboratory Astrophysics at SLAC Study in a Laboratory setting: Fundamental physics Astrophysical Dynamics

More information

New Phenomena in Gamma-Ray Strength Functions

New Phenomena in Gamma-Ray Strength Functions Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft Ronald Schwengner Institut für Strahlenphysik http://www.hzdr.de New Phenomena in Gamma-Ray Strength

More information

A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization)

A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization) A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization) Schodinger equation: Hψ = Eψ Choose a basis set of wave functions Two cases: Orthonormal

More information

上海超级计算中心 Shanghai Supercomputer Center. Lei Xu Shanghai Supercomputer Center San Jose

上海超级计算中心 Shanghai Supercomputer Center. Lei Xu Shanghai Supercomputer Center San Jose 上海超级计算中心 Shanghai Supercomputer Center Lei Xu Shanghai Supercomputer Center 03/26/2014 @GTC, San Jose Overview Introduction Fundamentals of the FDTD method Implementation of 3D UPML-FDTD algorithm on GPU

More information

High-Fidelity RF Gun Simulations with the Parallel 3D Finite Element Particle-In-Cell Code Pic3P

High-Fidelity RF Gun Simulations with the Parallel 3D Finite Element Particle-In-Cell Code Pic3P High-Fidelity RF Gun Simulations with the Parallel D Finite Element Particle-In-Cell Code PicP SLAC-PUB-668 June 9 A. Candel, A. Kabel, L. Lee, Z. Li, C. Limborg, C. Ng, G. Schussman and K. Ko SLAC National

More information

Introduction to accelerators for teachers (Korean program) Mariusz Sapiński CERN, Beams Department August 9 th, 2012

Introduction to accelerators for teachers (Korean program) Mariusz Sapiński CERN, Beams Department August 9 th, 2012 Introduction to accelerators for teachers (Korean program) Mariusz Sapiński (mariusz.sapinski@cern.ch) CERN, Beams Department August 9 th, 2012 Definition (Britannica) Particle accelerator: A device producing

More information

Integrated Modeling of Fast Ignition Experiments

Integrated Modeling of Fast Ignition Experiments Integrated Modeling of Fast Ignition Experiments Presented to: 9th International Fast Ignition Workshop Cambridge, MA November 3-5, 2006 R. P. J. Town AX-Division Lawrence Livermore National Laboratory

More information

Diffusive Particle Acceleration (DSA) in Relativistic Shocks

Diffusive Particle Acceleration (DSA) in Relativistic Shocks Diffusive Particle Acceleration (DSA) in Relativistic Shocks Don Ellison & Don Warren (NCSU), Andrei Bykov (Ioffe Institute) 1) Monte Carlo simulation of Diffusive Shock Acceleration (DSA) in collisionless

More information

Department of Energy. del Duomo di Milano. Matteo Passoni Politecnico di Milano

Department of Energy. del Duomo di Milano. Matteo Passoni Politecnico di Milano Department of Energy Enhanced Firma laser-driven convenzione sources for Politecnico nuclear and di material Milano e science Veneranda applications Fabbrica del Duomo di Milano Matteo Passoni Politecnico

More information

Laser trigged proton acceleration from ultrathin foil

Laser trigged proton acceleration from ultrathin foil Laser trigged proton acceleration from ultrathin foil A.V. Brantov 1, V. Yu. Bychenkov 1, D. V. Romanov 2, A. Maksimchuk 3 1 P. N. Lebedev Physics Institute RAS, Moscow 119991, Russia 2 All-Russia Research

More information

Speeding up simulations of relativistic systems using an optimal boosted frame

Speeding up simulations of relativistic systems using an optimal boosted frame Speeding up simulations of relativistic systems using an optimal boosted frame J.-L. Vay1,3, W.M. Fawley1, C. G. R. Geddes1, E. Cormier-Michel1, D. P. Grote2,3 1Lawrence Berkeley National Laboratory, CA

More information

arxiv: v1 [hep-lat] 7 Oct 2010

arxiv: v1 [hep-lat] 7 Oct 2010 arxiv:.486v [hep-lat] 7 Oct 2 Nuno Cardoso CFTP, Instituto Superior Técnico E-mail: nunocardoso@cftp.ist.utl.pt Pedro Bicudo CFTP, Instituto Superior Técnico E-mail: bicudo@ist.utl.pt We discuss the CUDA

More information

Particle Detectors. Summer Student Lectures 2010 Werner Riegler, CERN, History of Instrumentation History of Particle Physics

Particle Detectors. Summer Student Lectures 2010 Werner Riegler, CERN, History of Instrumentation History of Particle Physics Particle Detectors Summer Student Lectures 2010 Werner Riegler, CERN, werner.riegler@cern.ch History of Instrumentation History of Particle Physics The Real World of Particles Interaction of Particles

More information

Explore Computational Power of GPU in Electromagnetics and Micromagnetics

Explore Computational Power of GPU in Electromagnetics and Micromagnetics Explore Computational Power of GPU in Electromagnetics and Micromagnetics Presenter: Sidi Fu, PhD candidate, UC San Diego Advisor: Prof. Vitaliy Lomakin Center of Magnetic Recording Research, Department

More information

A framework for detailed multiphase cloud modeling on HPC systems

A framework for detailed multiphase cloud modeling on HPC systems Center for Information Services and High Performance Computing (ZIH) A framework for detailed multiphase cloud modeling on HPC systems ParCo 2009, 3. September 2009, ENS Lyon, France Matthias Lieber a,

More information

Accelerating linear algebra computations with hybrid GPU-multicore systems.

Accelerating linear algebra computations with hybrid GPU-multicore systems. Accelerating linear algebra computations with hybrid GPU-multicore systems. Marc Baboulin INRIA/Université Paris-Sud joint work with Jack Dongarra (University of Tennessee and Oak Ridge National Laboratory)

More information

Introduction to Accelerator Physics CHESS & LEPP

Introduction to Accelerator Physics CHESS & LEPP 1 Introduction to Accelerator Physics Content 1. A History of Particle Accelerators 2. E & M in Particle Accelerators 3. Linear Beam Optics in Straight Systems 4. Linear Beam Optics in Circular Systems

More information

Radiative Processes in Astrophysics

Radiative Processes in Astrophysics Radiative Processes in Astrophysics 9. Synchrotron Radiation Eline Tolstoy http://www.astro.rug.nl/~etolstoy/astroa07/ Useful reminders relativistic terms, and simplifications for very high velocities

More information

Optimization of hadron therapy proton beam using Monte Carlo code on GPU

Optimization of hadron therapy proton beam using Monte Carlo code on GPU Dottorato in Fisica degli Acceleratori, XXIX ciclo Optimization of hadron therapy proton beam using Monte Carlo code on GPU Candidata: Martina Senzacqua N matricola: 1163436 Supervisor: Prof. Vincenzo

More information

Magnetic resonance imaging MRI

Magnetic resonance imaging MRI Magnetic resonance imaging MRI Introduction What is MRI MRI is an imaging technique used primarily in medical settings that uses a strong magnetic field and radio waves to produce very clear and detailed

More information

Simulation of Relativistic Jet-Plasma Interactions

Simulation of Relativistic Jet-Plasma Interactions Simulation of Relativistic Jet-Plasma Interactions Robert Noble and Johnny Ng Stanford Linear Accelerator Center SABER Workshop, Laboratory Astrophysics WG SLAC, March 15-16, 2006 Motivations High energy

More information

External injection of electron bunches into plasma wakefields

External injection of electron bunches into plasma wakefields External injection of electron bunches into plasma wakefields Studies on emittance growth and bunch compression p x x Timon Mehrling, Julia Grebenyuk and Jens Osterhoff FLA, Plasma Acceleration Group (http://plasma.desy.de)

More information

Graduate Accelerator Physics. G. A. Krafft Jefferson Lab Old Dominion University Lecture 1

Graduate Accelerator Physics. G. A. Krafft Jefferson Lab Old Dominion University Lecture 1 Graduate Accelerator Physics G. A. Krafft Jefferson Lab Old Dominion University Lecture 1 Course Outline Course Content Introduction to Accelerators and Short Historical Overview Basic Units and Definitions

More information

Materials for Future Fusion Reactors under Severe Stationary and Transient Thermal Loads

Materials for Future Fusion Reactors under Severe Stationary and Transient Thermal Loads Mitglied der Helmholtz-Gemeinschaft Materials for Future Fusion Reactors under Severe Stationary and Transient Thermal Loads J. Linke, J. Du, N. Lemahieu, Th. Loewenhoff, G. Pintsuk, B. Spilker, T. Weber,

More information

The azimuthal MRI in experiment: confirmations and surprises

The azimuthal MRI in experiment: confirmations and surprises Max-Planck-Princeton Center for Plasma Physics General Meeting, Berlin, June 28 July 1, 2014 The azimuthal MRI in experiment: confirmations and surprises Frank Stefani with thanks to V. Galindo, O. Kirillov,

More information

Measurements of Radiation Doses Induced by High Intensity Laser between and W/cm 2 onto Solid Targets at LCLS MEC Instrument

Measurements of Radiation Doses Induced by High Intensity Laser between and W/cm 2 onto Solid Targets at LCLS MEC Instrument Measurements of Radiation Doses Induced by High Intensity Laser between 10 16 and 10 21 W/cm 2 onto Solid Targets at LCLS MEC Instrument T. Liang 1,2, J. Bauer 1, M. Cimeno 1, A. Ferrari 3, E. Galtier

More information

Simulation Techniques for HED I: Particle-in-Cell Methods

Simulation Techniques for HED I: Particle-in-Cell Methods 2015 HED Summer School Simulation Techniques for HED I: Particle-in-Cell Methods Frank S. Tsung UCLA Special Thanks Viktor Decyk Peicheng Yu < - Slides Michael Meyers Thamine Dalichaouch < - Demos Outline

More information

Simulation of the electromagnetic field in a cylindrical cavity of an ECR ions source

Simulation of the electromagnetic field in a cylindrical cavity of an ECR ions source Journal of Physics: Conference Series PAPER OPEN ACCESS Simulation of the electromagnetic field in a cylindrical cavity of an ECR ions source To cite this article: A Estupiñán et al 2017 J. Phys.: Conf.

More information

Beam Optics for a Scanned Proton Beam at Loma Linda University Medical Center

Beam Optics for a Scanned Proton Beam at Loma Linda University Medical Center Beam Optics for a Scanned Proton Beam at Loma Linda University Medical Center George Coutrakon, Jeff Hubbard, Peter Koss, Ed Sanders, Mona Panchal Loma Linda University Medical Center 11234 Anderson Street

More information

Particle Physics Homework Assignment 4

Particle Physics Homework Assignment 4 Particle Physics Homework Assignment 4 Prof. Costas Foudas March 01 Problem 1: Show the the momentum, p of a particle moving in a circular trajectory of radius, R, in a magnetic field, B, is given by:

More information

Mitglied der Helmholtz-Gemeinschaft. Application of rarefied gas dynamics for design of the ITER optical diagnostics

Mitglied der Helmholtz-Gemeinschaft. Application of rarefied gas dynamics for design of the ITER optical diagnostics Mitglied der Helmholtz-Gemeinschaft Application of rarefied gas dynamics for design of the ITER optical diagnostics 64th IUVSTA Workshop, May 16-19th 2011 V. Kotov, D. Reiter, IEK-4 - Plasma Physics Mirrors

More information

B L U E V A L L E Y D I S T R I C T C U R R I C U L U M Science Physics

B L U E V A L L E Y D I S T R I C T C U R R I C U L U M Science Physics B L U E V A L L E Y D I S T R I C T C U R R I C U L U M Science Physics ORGANIZING THEME/TOPIC UNIT 1: KINEMATICS Mathematical Concepts Graphs and the interpretation thereof Algebraic manipulation of equations

More information

The atom cont. +Investigating EM radiation

The atom cont. +Investigating EM radiation The atom cont. +Investigating EM radiation Announcements: First midterm is 7:30pm on Sept 26, 2013 Will post a past midterm exam from 2011 today. We are covering Chapter 3 today. (Started on Wednesday)

More information

2 Feynman rules, decay widths and cross sections

2 Feynman rules, decay widths and cross sections 2 Feynman rules, decay widths and cross sections 2.1 Feynman rules Normalization In non-relativistic quantum mechanics, wave functions of free particles are normalized so that there is one particle in

More information

Unconventional Acceleration Systems for Proton Radiotherapy

Unconventional Acceleration Systems for Proton Radiotherapy Unconventional Acceleration Systems for Proton Radiotherapy Thomas Rockwell Mackie Emeritus Professor University of Wisconsin Director of Medical Devices Morgridge Institute for Research Madison WI Conflict

More information

Baryshevsky V., Gurinovich A., Gurnevich E., Lobko A.

Baryshevsky V., Gurinovich A., Gurnevich E., Lobko A. Baryshevsky V., Gurinovich A., Gurnevich E., Lobko A. Research Institute for Nuclear Problems Minsk Belarus INP In the Executive Summary of the first International Workshop Physics for Health in Europe

More information

PARTICLE BEAMS, TOOLS FOR MODERN SCIENCE AND MEDICINE Hans-H. Braun, CERN

PARTICLE BEAMS, TOOLS FOR MODERN SCIENCE AND MEDICINE Hans-H. Braun, CERN 5 th Particle Physics Workshop National Centre for Physics Quaid-i-Azam University Campus, Islamabad PARTICLE BEAMS, TOOLS FOR MODERN SCIENCE AND MEDICINE Hans-H. Braun, CERN 2 nd Lecture Examples of Modern

More information

Computation of Large Sparse Aggregated Areas for Analytic Database Queries

Computation of Large Sparse Aggregated Areas for Analytic Database Queries Computation of Large Sparse Aggregated Areas for Analytic Database Queries Steffen Wittmer Tobias Lauer Jedox AG Collaborators: Zurab Khadikov Alexander Haberstroh Peter Strohm Business Intelligence and

More information

Linear and non-linear evolution of the gyroresonance instability in Cosmic Rays

Linear and non-linear evolution of the gyroresonance instability in Cosmic Rays Linear and non-linear evolution of the gyroresonance instability in Cosmic Rays DESY Summer Student Programme, 2016 Olga Lebiga Taras Shevchenko National University of Kyiv, Ukraine Supervisors Reinaldo

More information

Spacal alignment and calibration

Spacal alignment and calibration Spacal alignment and calibration Sebastian Piec AGH University of Science and Technology Al. Mickiewicza 3, Cracow, Poland Email: sepiec@poczta.onet.pl The main purpose of my work was alignment and calibration

More information

Simulation of transverse emittance measurements using the single slit method

Simulation of transverse emittance measurements using the single slit method Simulation of transverse emittance measurements using the single slit method Rudolf Höfler Vienna University of Technology DESY Zeuthen Summer Student Program 007 Abstract Emittance measurements using

More information

Tracking. Particle In Cell. Wakefield

Tracking. Particle In Cell. Wakefield CST PARTICLE STUDIO STUDIO SOLVERS & APPLICATIONS 1 www.cst.com Mar-09 CST PARTICLE STUDIO Solvers Tracking Simulation of DC Particle Guns, Collectors, Magnets Tracking in static E/H fields (incl. space

More information

Clojure Concurrency Constructs, Part Two. CSCI 5828: Foundations of Software Engineering Lecture 13 10/07/2014

Clojure Concurrency Constructs, Part Two. CSCI 5828: Foundations of Software Engineering Lecture 13 10/07/2014 Clojure Concurrency Constructs, Part Two CSCI 5828: Foundations of Software Engineering Lecture 13 10/07/2014 1 Goals Cover the material presented in Chapter 4, of our concurrency textbook In particular,

More information

Radiation processes and mechanisms in astrophysics I. R Subrahmanyan Notes on ATA lectures at UWA, Perth 18 May 2009

Radiation processes and mechanisms in astrophysics I. R Subrahmanyan Notes on ATA lectures at UWA, Perth 18 May 2009 Radiation processes and mechanisms in astrophysics I R Subrahmanyan Notes on ATA lectures at UWA, Perth 18 May 009 Light of the night sky We learn of the universe around us from EM radiation, neutrinos,

More information

Investigations on warm dense plasma with PHELIX facility

Investigations on warm dense plasma with PHELIX facility 2 nd EMMI Workshop on Plasma Physics with Intense Laser and Heavy Ion Beams, May 14-15, Moscow Investigations on warm dense plasma with PHELIX facility S.A. Pikuz Jr., I.Yu. Skobelev, A.Ya. Faenov, T.A.

More information

An Introduction to Plasma Accelerators

An Introduction to Plasma Accelerators An Introduction to Plasma Accelerators Humboldt University Research Seminar > Role of accelerators > Working of plasma accelerators > Self-modulation > PITZ Self-modulation experiment > Application Gaurav

More information

ICALEPCS Oct. 6-11, 2013

ICALEPCS Oct. 6-11, 2013 Outline 2 SOHO (ESA & NASA) 3 SOHO (ESA & NASA) 4 SOHO (ESA & NASA) EGRET Team 5 Heavy Ions Charged Ionizing Radiation Outer-Space is full of them Figures reproduced from: 1.Mewaldt, R.A., "Elemental Composition

More information

An Integrative Model for Parallelism

An Integrative Model for Parallelism An Integrative Model for Parallelism Victor Eijkhout ICERM workshop 2012/01/09 Introduction Formal part Examples Extension to other memory models Conclusion tw-12-exascale 2012/01/09 2 Introduction tw-12-exascale

More information

4 FEL Physics. Technical Synopsis

4 FEL Physics. Technical Synopsis 4 FEL Physics Technical Synopsis This chapter presents an introduction to the Free Electron Laser (FEL) physics and the general requirements on the electron beam parameters in order to support FEL lasing

More information

Broadband lasercooling of relativistic C 3+ ions at the ESR

Broadband lasercooling of relativistic C 3+ ions at the ESR Broadband lasercooling of relativistic C 3+ ions at the ESR Danyal Winters 1, Colin Clark 1, Christina Dimopoulou 1, Tino Giacomini 1, Christophor Kozhuharov 1, Thomas Kühl 1,2,3, Yuri Litvinov 1, Matthias

More information

Estec final presentation days 2018

Estec final presentation days 2018 Estec final presentation days 2018 Background VESPER Facility Conclusion & Outlook Jovian environment Radiation Effects VESPER history VESPER status Overview Experimental Results External Campaign Summary

More information

Introduction to intense laser-matter interaction

Introduction to intense laser-matter interaction Pohang, 22 Aug. 2013 Introduction to intense laser-matter interaction Chul Min Kim Advanced Photonics Research Institute (APRI), Gwangju Institute of Science and Technology (GIST) & Center for Relativistic

More information

Markus Roth TU Darmstadt

Markus Roth TU Darmstadt Laser-driven Production of Particle Beams and their application to medical treatment Markus Roth TU Darmstadt The Case Laser-driven electrons Potential for Applications in Therapy Use of secondary Radiation

More information

Speeding up simulations of relativistic systems using an optimal boosted frame

Speeding up simulations of relativistic systems using an optimal boosted frame Speeding up simulations of relativistic systems using an optimal boosted frame J.-L. Vay1,3, W. M. Fawley1, C. G. R. Geddes1, E. Cormier-Michel1, D. P. Grote2,3 1Lawrence Berkeley National Laboratory,

More information

Physics of Novel Radiation Modalities Particles and Isotopes. Todd Pawlicki, Ph.D. UC San Diego

Physics of Novel Radiation Modalities Particles and Isotopes. Todd Pawlicki, Ph.D. UC San Diego Physics of Novel Radiation Modalities Particles and Isotopes Todd Pawlicki, Ph.D. UC San Diego Disclosure I have no conflicts of interest to disclose. Learning Objectives Understand the physics of proton

More information

Particle in cell simulations

Particle in cell simulations Particle in cell simulations Part III: Boundary conditions and parallelization Benoît Cerutti IPAG, CNRS, Université Grenoble Alpes, Grenoble, France. 1 Astrosim, Lyon, June 26 July 7, 2017. Plan of the

More information

Status and Perspectives of Hadron Physics in Europe. Forschungszentrum Jülich in der Helmholtz-Gemeinschaft

Status and Perspectives of Hadron Physics in Europe. Forschungszentrum Jülich in der Helmholtz-Gemeinschaft Hans Ströher Status and Perspectives of Hadron Physics in Europe Forschungszentrum Jülich in der Helmholtz-Gemeinschaft Europe We are here: Tbilisi (Georgia) Area (EU 15): ~ π x 10 6 km 2 (EU 25): 1.25

More information

HIGH PERFORMANCE CTC TRAINING FOR END-TO-END SPEECH RECOGNITION ON GPU

HIGH PERFORMANCE CTC TRAINING FOR END-TO-END SPEECH RECOGNITION ON GPU April 4-7, 2016 Silicon Valley HIGH PERFORMANCE CTC TRAINING FOR END-TO-END SPEECH RECOGNITION ON GPU Minmin Sun, NVIDIA minmins@nvidia.com April 5th Brief Introduction of CTC AGENDA Alpha/Beta Matrix

More information

SCALING OF PLASMA SOURCES FOR O 2 ( 1 ) GENERATION FOR CHEMICAL OXYGEN-IODINE LASERS

SCALING OF PLASMA SOURCES FOR O 2 ( 1 ) GENERATION FOR CHEMICAL OXYGEN-IODINE LASERS SCALING OF PLASMA SOURCES FOR O 2 ( 1 ) GENERATION FOR CHEMICAL OXYGEN-IODINE LASERS D. Shane Stafford and Mark J. Kushner Department of Electrical and Computer Engineering Urbana, IL 61801 http://uigelz.ece.uiuc.edu

More information

Science 30 Unit C Review Outline GCCHS. Negatively charged Positively charged Coulomb Conductor Electric potential difference

Science 30 Unit C Review Outline GCCHS. Negatively charged Positively charged Coulomb Conductor Electric potential difference Science 30 Unit C Review Outline GCCHS Negatively charged Positively charged Coulomb Conductor Electric potential difference volt voltage Insulator Test body Gravitational field Field lines Solar wind

More information

CURRICULUM COURSE OUTLINE

CURRICULUM COURSE OUTLINE CURRICULUM COURSE OUTLINE Course Name(s): Grade(s): Department: Course Length: Pre-requisite: Introduction to Physics 9 th grade Science 1 semester Textbook/Key Resource: Conceptual Physical Science Explorations

More information

SRF GUN CHARACTERIZATION - PHASE SPACE AND DARK CURRENT MEASUREMENTS AT ELBE*

SRF GUN CHARACTERIZATION - PHASE SPACE AND DARK CURRENT MEASUREMENTS AT ELBE* SRF GUN CHARACTERIZATION - PHASE SPACE AND DARK CURRENT MEASUREMENTS AT ELBE* E. Panofski #, A. Jankowiak, T. Kamps, Helmholtz-Zentrum Berlin, Berlin, Germany P.N. Lu, J. Teichert, Helmholtz-Zentrum Dresden-Rossendorf,

More information

Novel Simulation Methods in the code-framework Warp

Novel Simulation Methods in the code-framework Warp Novel Simulation Methods in the code-framework Warp J.-L. Vay1,3, D.P. Grote2,3, R.H. Cohen2,3, A. Friedman2,3, S.M. Lund2,3, E. Cormier-Michel1, W.M. Fawley1, M.A. Furman1, C.G.R. Geddes1 1Lawrence Berkeley

More information

Numerical Models of the high-z Universe

Numerical Models of the high-z Universe Texte Numerical Models of the high-z Universe Dominique AUBERT Observatoire Astronomique, Université de Strasbourg EOR Robertson et al. 2010 Epoch of Reionization ~200 Myrs - 1Gyr z~30-6! Challenge : Multiple

More information

Superconducting RF Accelerators: Why all the interest?

Superconducting RF Accelerators: Why all the interest? Superconducting RF Accelerators: Why all the interest? William A. Barletta Director, United States Particle Accelerator School Dept. of Physics, MIT The HEP prespective ILC PROJECT X Why do we need RF

More information

Magnetic fields of the optical matching devices used in the positron source of the ILC

Magnetic fields of the optical matching devices used in the positron source of the ILC Magnetic fields of the optical matching devices used in the positron source of the ILC Richard Pausch Dresden University of Technology DESY Summer Students Programme 2010 Supervisors: Andreas Schälicke,

More information

Kinetic Plasma Simulations. Anatoly Spitkovsky (Princeton)

Kinetic Plasma Simulations. Anatoly Spitkovsky (Princeton) Kinetic Plasma Simulations Anatoly Spitkovsky (Princeton) Contents Plasma physics on computers How PIC works Electrostatic codes Charge assignment and shape factors Discretization effects Electromagnetic

More information