Skip to content

Releases: nix97/ODEs

ODEs Solver

13 Feb 12:13
27488d1

Choose a tag to compare

First-Order Ordinary Differential Equation (ivp) using Runge-Kutta 4th Order(RK4) method. To approximate the solution of the initial value problem (ivp) y ' =f(x,y) with y(a)=yo over [a,b] and subinterval M.
Source code in Delphi 10.4 Community Edition(CE).

1707826935201

Second-order ODE Solver using Runge-Kutta-Fehlberg (RKF45)

13 Feb 12:10
27488d1

Choose a tag to compare

To solving initial value problem (ivp) second-order Ordinary Differential Equation(ODE) using Runge-Kutta-Fehlberg formula (RKF45). This formula got advantages than the RK4 classic, RKF45 have Error Estimation. In this project, use math parser pymep, so we can input equation at runtime.
Source code in python(PyCharm).

1707826514134
1707826498466

Linear Shooting Method

13 Feb 11:57
27488d1

Choose a tag to compare

To approximate the solution of the boundary value problem (bvp) x '' = p(t) x'(t) + q(t) x(t) + r(t) with x(a) = alpha and x(b) = beta over the interval [a , b], subinterval M by using the Runge-Kutta method of order.
Source code in Lazarus 1.6.4

1707827341437
1707827238505

Third-Order Differential Equation

13 Feb 11:54
27488d1

Choose a tag to compare

This problem solve using Runge-Kutta fourth-order formula(RK4)
Diff equation Y'''(t)=F(t,y,y',y'') use IVP(Initial Value Problem).
Source code in C#(Visual Studio 2017 CE).

1707826712308
1707826723372

System of Ordinary Differential Equations

13 Feb 11:52
27488d1

Choose a tag to compare

The solving of the first-order system of two differential equations: (Y'(t) = F(t, x, y)) and (X'(t) = F(t, x, y)), IVP (Initial Value Problem).
Source code in C#(Visual Studio 2017 CE).

1707827594466

ODEs Solver

11 Feb 10:10
27488d1

Choose a tag to compare

tt ye rt