Right-hand side of van der Pol equation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(rk_class), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in) | :: | t | |||
real(kind=wp), | intent(in), | dimension(:) | :: | x | ||
real(kind=wp), | intent(out), | dimension(:) | :: | f |
subroutine fvpol(me,t,x,f) !! Right-hand side of van der Pol equation class(rk_class),intent(inout) :: me real(wp),intent(in) :: t real(wp),dimension(:),intent(in) :: x real(wp),dimension(:),intent(out) :: f f(1) = x(2) f(2) = 0.2_wp*(1.0_wp-x(1)**2)*x(2) - x(1) end subroutine fvpol