init_normalisations Subroutine

public subroutine init_normalisations(normalisations_config_in)

Read input file and populate the norms object

Arguments

Type IntentOptional Attributes Name
type(normalisations_config_type), intent(in), optional :: normalisations_config_in

Contents

Source Code


Source Code

  subroutine init_normalisations(normalisations_config_in)
    implicit none
    type(normalisations_config_type), intent(in), optional :: normalisations_config_in
    if(initialized) return
    initialized = .true.
    call norms%init(normalisations_config_in)
  end subroutine init_normalisations