-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from QuEraComputing/dp8-impl
Implementation of DP8.
- Loading branch information
Showing
24 changed files
with
956 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/.vscode | ||
**/**/**.cov | ||
|
||
/Manifest.toml | ||
Manifest.toml | ||
/docs/build/ | ||
/docs/Manifest.toml | ||
/docs/src/assets/main.css | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[deps] | ||
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" | ||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" | ||
DormandPrince = "5e45e72d-22b8-4dd0-9c8b-f96714864bcd" | ||
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
module DP5 | ||
|
||
using ..DormandPrince: DormandPrince, DP5Solver, Vars, Consts, Options, Report | ||
using ..DormandPrince: DormandPrince, | ||
DP5Solver, | ||
Vars, | ||
Consts, | ||
Options, | ||
Report, | ||
hinit, | ||
check_beta, | ||
check_max_allowed_steps, | ||
check_safety_factor, | ||
check_uround | ||
|
||
include("params.jl") | ||
include("helpers.jl") | ||
include("checks.jl") | ||
include("solver.jl") | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# define constants | ||
const c2=0.2 | ||
const c3=0.3 | ||
const c4=0.8 | ||
const c5=8.0/9.0 | ||
const a21=0.2 | ||
const a31=3.0/40.0 | ||
const a32=9.0/40.0 | ||
const a41=44.0/45.0 | ||
const a42=-56.0/15.0 | ||
const a43=32.0/9.0 | ||
const a51=19372.0/6561.0 | ||
const a52=-25360.0/2187.0 | ||
const a53=64448.0/6561.0 | ||
const a54=-212.0/729.0 | ||
const a61=9017.0/3168.0 | ||
const a62=-355.0/33.0 | ||
const a63=46732.0/5247.0 | ||
const a64=49.0/176.0 | ||
const a65=-5103.0/18656.0 | ||
const a71=35.0/384.0 | ||
const a73=500.0/1113.0 | ||
const a74=125.0/192.0 | ||
const a75=-2187.0/6784.0 | ||
const a76=11.0/84.0 | ||
const e1=71.0/57600.0 | ||
const e3=-71.0/16695.0 | ||
const e4=71.0/1920.0 | ||
const e5=-17253.0/339200.0 | ||
const e6=22.0/525.0 | ||
const e7=-1.0/40.0 |
Oops, something went wrong.
4aba651
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
release via ion
@JuliaRegistrator register branch=main
Release notes:
Release Note
4aba651
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/98071
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: