tic_print Subroutine

private subroutine tic_print(self)

打印时间积分参数

Type Bound

time_integration_configuration

Arguments

Type IntentOptional Attributes Name
class(time_integration_configuration), intent(in) :: self

Contents

Source Code


Source Code

    subroutine tic_print(self)
        class(time_integration_configuration), intent(in) :: self

        write (lgr_obj%unit, lgr_obj%fmt) 'cfl', self%cfl
        write (lgr_obj%unit, lgr_obj%fmt) 'stop_time', self%stop_time
        write (lgr_obj%unit, lgr_obj%fmt) 'dt', self%dt

    end subroutine tic_print