write_flux_line Subroutine

public subroutine write_flux_line(gnostics)

Print instantaneous heat fluxes to run_name.new.out

Arguments

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

Contents

Source Code


Source Code

  subroutine write_flux_line(gnostics)
    use diagnostics_config, only: diagnostics_type
    implicit none
    type(diagnostics_type), intent(in) :: gnostics
    if (.not. gnostics%ascii_files%write_to_out) return
    if (gnostics%create) return
    call output_flux_line(gnostics, gnostics%ascii_files%out)
  end subroutine write_flux_line