tem_mieexpansion_type Derived Type

type, private :: tem_mieexpansion_type

Expansion data for the Mier scatter solution.


Inherited by

type~~tem_mieexpansion_type~~InheritedByGraph type~tem_mieexpansion_type tem_mieexpansion_type type~tem_miescatter_field_type tem_miescatter_field_type type~tem_miescatter_field_type->type~tem_mieexpansion_type mieexpansion type~tem_spatial_type tem_spatial_type type~tem_spatial_type->type~tem_miescatter_field_type mie_fun type~tem_spacetime_fun_type tem_spacetime_fun_type type~tem_spacetime_fun_type->type~tem_miescatter_field_type mie_fun type~tem_spacetime_fun_type->type~tem_spatial_type spatial type~tem_ini_condition_type tem_ini_condition_type type~tem_ini_condition_type->type~tem_spatial_type ini_state type~tem_variable_type tem_variable_type type~tem_variable_type->type~tem_spacetime_fun_type st_fun type~tem_st_fun_listelem_type tem_st_fun_listElem_type type~tem_st_fun_listelem_type->type~tem_spacetime_fun_type val type~tem_st_fun_listelem_type->type~tem_st_fun_listelem_type next type~tem_st_fun_linkedlist_type tem_st_fun_linkedList_type type~tem_st_fun_linkedlist_type->type~tem_st_fun_listelem_type head

Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: nCoeffs

The number of expansion coefficients

complex(kind=rk), public, allocatable :: c_tot(:)

Expansion coefficients inside the cylinder

complex(kind=rk), public, allocatable :: c_scat(:)

Expansion coefficients outside the cylinder (for the scattered field)


Source Code

  type tem_mieexpansion_type

    !> The number of expansion coefficients
    integer :: nCoeffs

    !> Expansion coefficients inside the cylinder
    complex(kind=rk), allocatable :: c_tot(:)

    !> Expansion coefficients outside the cylinder (for the scattered field)
    complex(kind=rk), allocatable :: c_scat(:)

  end type tem_mieexpansion_type