Birth profile structure
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | cnt | = | 1 | Particle counter |
|
type(BirthParticle), | public, | dimension(:), allocatable | :: | part | Array of birth particles |
||
real(kind=Float64), | public, | dimension(:,:,:,:), allocatable | :: | dens | Birth density: dens(neutral_type,x,y,z) [fast-ions/(s*cm^3)] |
type BirthProfile
!+ Birth profile structure
integer :: cnt = 1
!+ Particle counter
type(BirthParticle), dimension(:), allocatable :: part
!+ Array of birth particles
real(Float64), dimension(:,:,:,:), allocatable :: dens
!+ Birth density: dens(neutral_type,x,y,z) [fast-ions/(s*cm^3)]
end type BirthProfile