Skip to content

poteto0/nlde_solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Nonlinear Differential Equation Solver

Solve Nonlinear Differential Equations approximately.

pip install git+https://github.com/poteto0/nlde_solver.git
import nlde_solver as nldes

solver = nldes.NLDESolver(func=function)

The function must take a two-dimentional argument and return a one-dimensional return value. The arguments should be array.

$$\frac{dx}{dt} = \alpha x - (1-\alpha)$$
def ex(x=[x,y]):
  return alpha*x - (1-alpha)*y

This pkg can solve nonlinear-differential-equations approximately. An approximate solution with the smallest gradient within a given search range is searched. If there is sufficient search range, this will be a nullcline.

y1 = np.linspace(..., ..., ...)
y2 = np.linspace(..., ..., ...)
ans = solver.solve(y1, y2)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages