| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Model), | intent(in) | :: | this | |||
| real(kind=prec), | intent(in) | :: | x | |||
| real(kind=prec), | intent(in) | :: | t |
pure function hbc1d_Prescribed_Model(this,x,t) result(exts)
class(Model),intent(in) :: this
real(prec),intent(in) :: x
real(prec),intent(in) :: t
real(prec) :: exts(1:this%nvar)
exts = 0.0_prec
if(.false.) exts(1) = exts(1)+x+t ! suppress unused-dummy-argument warnings for default implementation
endfunction hbc1d_Prescribed_Model