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