giancarloantonucci / NSDETimeParallel.jl

A Julia package implementing time-parallel methods.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NSDETimeParallel.jl

A Julia package implementing time-parallel methods.

Documentation Build Status Coverage Status

Installation

This package is a registered package compatible with Julia v1.6 and above. From the Julia REPL,

]add NSDETimeParallel

Read the documentation for a complete overview of this package.

Usage

using NSDERungeKutta, NSDETimeParallel
using Plots, LaTeXStrings

u0 = [2.0, 3.0, -14.0]
problem = Lorenz(u0, 0.0, 10.0)
solver = Parareal(RK4(h = 1e-3), RK4(h = 1e-1), P = 10)
solution = solve(problem, solver)
plot(solution, xlabel = L"t", label = [L"x" L"y" L"z"])

svg

Available methods

This package currently supports only Parareal.

About

A Julia package implementing time-parallel methods.

License:GNU General Public License v3.0


Languages

Language:Julia 100.0%