getan Subroutine

public subroutine getan(antot, antota, antotp, local_only)

Compute velocity space integrals over :

See Colin's field equation notes for more details

Always uses gnew as

FIXME: Get these notes on the website

Arguments

Type IntentOptional Attributes Name
complex, intent(inout), dimension (-ntgrid:,:,:) :: antot
complex, intent(inout), dimension (-ntgrid:,:,:) :: antota
complex, intent(inout), dimension (-ntgrid:,:,:) :: antotp
logical, intent(in), optional :: local_only

Contents

Source Code


Source Code

  subroutine getan (antot, antota, antotp, local_only)
    use dist_fn_arrays, only: gnew
    use theta_grid, only: ntgrid
    implicit none
    complex, dimension (-ntgrid:,:,:), intent (in out) :: antot, antota, antotp
    logical, intent(in), optional :: local_only
    call getan_from_dfn(gnew, antot, antota, antotp, local_only)
  end subroutine getan