init_species Subroutine

public subroutine init_species(species_config_in, species_elements_config_in)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
type(species_config_type), intent(in), optional :: species_config_in
type(species_element_config_type), intent(in), optional, dimension(:), allocatable :: species_elements_config_in

Contents

Source Code


Source Code

  subroutine init_species(species_config_in, species_elements_config_in)
    implicit none
    type(species_config_type), intent(in), optional :: species_config_in
    type(species_element_config_type), intent(in), dimension(:), allocatable, optional :: species_elements_config_in

    if (initialized) return
    initialized = .true.

    call read_parameters(species_config_in, species_elements_config_in)

  end subroutine init_species