Skip to content
Snippets Groups Projects
Commit 23254104 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann
Browse files

temperature and density arrays for diagnostics

parent 6613afcd
No related branches found
No related tags found
No related merge requests found
...@@ -32,4 +32,12 @@ MODULE array ...@@ -32,4 +32,12 @@ MODULE array
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: Ne00 COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: Ne00
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: Ni00 COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: Ni00
! particle density for electron and ions (meant for 2D output)
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: dens_e
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: dens_i
! particle temperature for electron and ions (meant for 2D output)
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: temp_e
COMPLEX(dp), DIMENSION(:,:), ALLOCATABLE :: temp_i
END MODULE array END MODULE array
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment