maxwellian_derivation_class Module

Houses derivation that calculates a Maxwellian based on temperature and density and the velocity grid


Used by


Interfaces

interface

  • private module function calculateMaxwellian(this, inputArray, indices) result(output)

    Arguments

    Type IntentOptional Attributes Name
    class(MaxwellianDerivation), intent(inout) :: this
    type(RealArray), intent(in), dimension(:) :: inputArray
    integer(kind=ik), intent(in), dimension(:) :: indices

    Return Value real(kind=rk), allocatable, dimension(:)

interface

  • private module subroutine initMaxwellianDeriv(this, vSpaceObj)

    Initialize Maxwellian derivation

    Arguments

    Type IntentOptional Attributes Name
    class(MaxwellianDerivation), intent(inout) :: this
    type(VSpace), intent(in) :: vSpaceObj

Derived Types

type, public, extends(Derivation) ::  MaxwellianDerivation

Calculates Maxwellian distribution. Expects temperature and density indices (in that order), and assumes velocity is normalized to electron thermal speed.

Components

Type Visibility Attributes Name Initial
logical, public :: userDefined = .false.

True only if user explicitly sets it to true

integer(kind=ik), private :: numH

Total number of harmonics

real(kind=rk), private, allocatable, dimension(:) :: vGridCopy

Local copy of velocity grid for easier calculations

Type-Bound Procedures

procedure, public :: isDefined => isDefinedObject
procedure, public :: makeDefined => makeDefinedObject
procedure, public :: makeUndefined => makeUndefinedObject
procedure, public :: init => initMaxwellianDeriv
procedure, public :: calculate => calculateMaxwellian