PreTendency_Model Subroutine

public subroutine PreTendency_Model(this)

PreTendency is a template routine that is used to house any additional calculations that you want to execute at the beginning of the tendency calculation routine. This default PreTendency simply returns back to the caller without executing any instructions

The intention is to provide a method that can be overridden through type-extension, to handle any steps that need to be executed before proceeding with the usual tendency calculation methods.

Arguments

TypeIntentOptionalAttributesName
class(Model), intent(inout) :: this

Contents

Source Code


Source Code

  subroutine PreTendency_Model(this)
    !! PreTendency is a template routine that is used to house any additional calculations
    !! that you want to execute at the beginning of the tendency calculation routine.
    !! This default PreTendency simply returns back to the caller without executing any instructions
    !!
    !! The intention is to provide a method that can be overridden through type-extension, to handle
    !! any steps that need to be executed before proceeding with the usual tendency calculation methods.
    !!
    implicit none
    class(Model),intent(inout) :: this

    return

  endsubroutine PreTendency_Model