-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d57fb38
commit 62bccbd
Showing
6 changed files
with
82 additions
and
81 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
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,32 +1,47 @@ | ||
|
||
Analytical ODE test problem: | ||
reltol = 1.0e-06 | ||
abstol = 1.0e-10 | ||
lambda = -1e+06 | ||
reltol = 1.0e-08 | ||
abstol = 1.0e-08 | ||
|
||
|
||
HARD CODED to set interpolation type = ARK_INTERP_LAGRANGE | ||
|
||
|
||
Solving with RKL method | ||
|
||
t u | ||
--------------------- | ||
1.000000 0.916291 | ||
2.000000 1.609437 | ||
3.000000 2.140066 | ||
4.000000 2.564949 | ||
5.000000 2.917770 | ||
6.000000 3.218876 | ||
7.000000 3.481240 | ||
8.000000 3.713572 | ||
9.000000 3.921973 | ||
10.000000 4.110874 | ||
1.000000 0.785398 | ||
2.000000 1.107149 | ||
3.000000 1.249046 | ||
4.000000 1.325818 | ||
5.000000 1.373401 | ||
6.000000 1.405648 | ||
7.000000 1.428899 | ||
8.000000 1.446441 | ||
9.000000 1.460139 | ||
10.000000 1.471128 | ||
--------------------- | ||
|
||
Final Statistics: | ||
Current time = 10.12157090914652 | ||
Steps = 82 | ||
Step attempts = 83 | ||
Current time = 10.01061550413158 | ||
Steps = 1681 | ||
Step attempts = 1690 | ||
Stability limited steps = 0 | ||
Accuracy limited steps = 83 | ||
Error test fails = 1 | ||
Accuracy limited steps = 1690 | ||
Error test fails = 9 | ||
NLS step fails = 0 | ||
Inequality constraint fails = 0 | ||
Initial step size = 6.103515625000001e-12 | ||
Last step size = 0.4463519264234082 | ||
Current step size = 0.4463519264234082 | ||
RHS fn evals = 417 | ||
Initial step size = 1.930101110942615e-10 | ||
Last step size = 0.01627887578334304 | ||
Current step size = 0.02442720680359409 | ||
RHS fn evals = 174916 | ||
RHS fn evals for spr = 0 | ||
Number of SPR update calls = 1 | ||
Max. num. of stages taken = 199 | ||
Max. num. of stages allowed = 200 | ||
Max. spectral radius = 1010000.00 | ||
Min. spectral radius = 1010000.00 | ||
|
||
ACCURACY at the final time = 3.54383e-13 |
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,32 +1,48 @@ | ||
|
||
Analytical ODE test problem: | ||
reltol = 1.0e-06 | ||
abstol = 1.0e-10 | ||
lambda = -1e+06 | ||
alpha = 100 | ||
reltol = 1.0e-08 | ||
abstol = 1.0e-08 | ||
|
||
|
||
HARD CODED to set interpolation type = ARK_INTERP_LAGRANGE | ||
|
||
|
||
Solving with RKC method | ||
|
||
t u | ||
--------------------- | ||
1.000000 0.916291 | ||
2.000000 1.609437 | ||
3.000000 2.140066 | ||
4.000000 2.564949 | ||
5.000000 2.917770 | ||
6.000000 3.218876 | ||
7.000000 3.481240 | ||
8.000000 3.713572 | ||
9.000000 3.921973 | ||
10.000000 4.110874 | ||
1.000000 0.785398 | ||
2.000000 1.107149 | ||
3.000000 1.249046 | ||
4.000000 1.325818 | ||
5.000000 1.373401 | ||
6.000000 1.405648 | ||
7.000000 1.428899 | ||
8.000000 1.446441 | ||
9.000000 1.460139 | ||
10.000000 1.471128 | ||
--------------------- | ||
|
||
Final Statistics: | ||
Current time = 10.12157090914652 | ||
Steps = 82 | ||
Step attempts = 83 | ||
Current time = 10.00091506153245 | ||
Steps = 1990 | ||
Step attempts = 1992 | ||
Stability limited steps = 0 | ||
Accuracy limited steps = 83 | ||
Error test fails = 1 | ||
Accuracy limited steps = 1992 | ||
Error test fails = 2 | ||
NLS step fails = 0 | ||
Inequality constraint fails = 0 | ||
Initial step size = 6.103515625000001e-12 | ||
Last step size = 0.4463519264234082 | ||
Current step size = 0.4463519264234082 | ||
RHS fn evals = 417 | ||
Initial step size = 1.930101110942615e-10 | ||
Last step size = 0.01744455979617476 | ||
Current step size = 0.01744455979617476 | ||
RHS fn evals = 165282 | ||
RHS fn evals for spr = 0 | ||
Number of SPR update calls = 81 | ||
Max. num. of stages taken = 165 | ||
Max. num. of stages allowed = 200 | ||
Max. spectral radius = 1010101.00 | ||
Min. spectral radius = 1009899.00 | ||
|
||
ACCURACY at the final time = 1.78968e-13 |
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