SciML / DiffEqProblemLibrary.jl

A library of premade problems for examples and testing differential equation solvers and other SciML scientific machine learning tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typo in the `vanstiff` docstring

nathanaelbosch opened this issue · comments

The ODEs in the docstrings of prob_ode_vanderpol and prob_ode_vanstiff are not the same, even though both use the same van function.

If the problem is correctly defined, then line 83

\\frac{dy}{dt} = μ(1-x^2)y -x

should be changed to be the same as line 67
\\frac{dy}{dt} = μ((1-x^2)y -x)

I'll open a PR right away.