save_dt_max Subroutine

public subroutine save_dt_max(dt_max)

Sets the maximum timestep size allowed based on passed value.

Arguments

Type IntentOptional Attributes Name
real, intent(in) :: dt_max

Contents

Source Code


Source Code

  subroutine save_dt_max (dt_max)
    implicit none
    real, intent (in) :: dt_max

    user_dt_max = dt_max
    code_dt_max = dt_max

  end subroutine save_dt_max