print_line Subroutine

public subroutine print_line(gnostics)

Print out growth rates to screen. Doesn't quite conform to the principle of having all useful results stored in gnostics... takes stuff straight from diagnostics_omega

Arguments

Type IntentOptional Attributes Name
type(diagnostics_type), intent(in) :: gnostics

Contents

Source Code


Source Code

  subroutine print_line(gnostics)
    use file_utils, only: stdout_unit
    use diagnostics_config, only: diagnostics_type
    implicit none
    type(diagnostics_type), intent(in) :: gnostics
    call output_line(gnostics, stdout_unit)
  end subroutine print_line