Skip to content

giancarloantonucci/NSDETimeParallel.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages