PrintType_Model Subroutine

public subroutine PrintType_Model(this)

Arguments

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

Contents

Source Code


Source Code

  subroutine PrintType_Model(this)
    implicit none
    class(Model),intent(in) :: this

    print*,__FILE__//" : Model : No model type"
    if(.false.) write(*,*) this%nvar ! suppress unused-dummy-argument warning

  endsubroutine PrintType_Model